mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
358 B
HTML
16 lines
358 B
HTML
<!DOCTYPE html>
|
|
<body onload="f()">
|
|
<p>First</p>
|
|
<p>Second</p>
|
|
<p>Third</p>
|
|
<script>
|
|
function f() {
|
|
var p = document.getElementsByTagName("p")[1];
|
|
var style = document.createElement("style");
|
|
style.setAttribute("scoped", "");
|
|
style.textContent = "p { color: green }";
|
|
p.appendChild(style);
|
|
}
|
|
</script>
|
|
</body>
|