summaryrefslogtreecommitdiff
path: root/test/js/dom-element-create.html
blob: 2b8ec11be05468180764c3714367d7cf8e6064f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Create paragraph and inspect its proto</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>HTMLElement test of attribute set/remove</h1>

<noscript><p>Javascript is disabled</p></noscript>
<script>
    var e = document.createElement("p");
    var t = document.createTextNode("Some text in a paragraph.");
    e.appendChild(t);
    e.setAttribute("id", "test");
    document.body.appendChild(e);
</script>
<script>
    var test = document.getElementById("test");
    document.write("<p>Paragraph element proto: ", test, ".</p>");
</script>

</body>
</html>