mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|