mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
18 lines
284 B
HTML
18 lines
284 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.scoped = true;
|
|
}
|
|
</script>
|
|
</body>
|