summaryrefslogtreecommitdiff
path: root/test/js/dom-body-enumerate.html
blob: ce617ef3fc5ff6f17b3a53c97b93447492776bcb (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
25
26
27
28
<html>
<head>
<title>Body element interface enumeration</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>Body element interface enumeration</h1>

<noscript><p>Javascript is disabled</p></noscript>
<script>
function output(x,y) {
    document.body.appendChild(document.createTextNode(x));
    document.body.appendChild(document.createTextNode("("));
    if (y != undefined) {
document.body.appendChild(document.createTextNode(y.length));
}
    document.body.appendChild(document.createTextNode(") = "));
    document.body.appendChild(document.createTextNode(y));
    document.body.appendChild(document.createElement('br'));
}


for(var key in document.body){
output(key, document.body[key]);
}
</script>
</body>
</html>