mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-12 20:30:18 +00:00
18 lines
330 B
HTML
18 lines
330 B
HTML
<!DOCTYPE html>
|
|
<body onload="f()">
|
|
<p>
|
|
<style scoped>
|
|
p { color: green }
|
|
</style>
|
|
First
|
|
</p>
|
|
<p>Second</p>
|
|
<script>
|
|
function f() {
|
|
var style = document.getElementsByTagName("style")[0];
|
|
var p = document.getElementsByTagName("p")[1];
|
|
p.appendChild(style);
|
|
}
|
|
</script>
|
|
</body>
|