mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-12 20:30:18 +00:00
18 lines
292 B
HTML
18 lines
292 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.scoped = false;
|
|
}
|
|
</script>
|
|
</body>
|