mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
18 lines
333 B
HTML
18 lines
333 B
HTML
|
<!DOCTYPE html>
|
||
|
<body onload="f()">
|
||
|
<p>First</p>
|
||
|
<div>
|
||
|
<style scoped>
|
||
|
p { color: green }
|
||
|
</style>
|
||
|
</div>
|
||
|
<p>Second</p>
|
||
|
<script>
|
||
|
function f() {
|
||
|
var p = document.getElementsByTagName("p")[0];
|
||
|
var div = document.getElementsByTagName("div")[0];
|
||
|
div.appendChild(p);
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|