Mypal/layout/reftests/scoped-style/scoped-style-dynamic-005.html
2019-03-11 13:26:37 +03:00

18 lines
303 B
HTML

<!DOCTYPE html>
<body onload="f()">
<p>First</p>
<p>
<style scoped>
p { color: green }
</style>
Second
</p>
<p>Third</p>
<script>
function f() {
var style = document.getElementsByTagName("style")[0];
style.removeAttribute("scoped");
}
</script>
</body>