mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
18 lines
303 B
HTML
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>
|