зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
297 B
HTML
18 строки
297 B
HTML
|
<!DOCTYPE html>
|
||
|
<body onload="f()">
|
||
|
<p>First</p>
|
||
|
<p>
|
||
|
<style>
|
||
|
p { color: green }
|
||
|
</style>
|
||
|
Second
|
||
|
</p>
|
||
|
<p>Third</p>
|
||
|
<script>
|
||
|
function f() {
|
||
|
var style = document.getElementsByTagName("style")[0];
|
||
|
style.setAttribute("scoped", "");
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|