add enumeration test on the document node

This commit is contained in:
Vincent Sanders 2012-11-18 21:49:25 +00:00
parent 8810bc0163
commit 4769698d13
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<html>
<head>
<title>document interface enumeration</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>Document interface enumeration</h1>
<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) {
output(key, document[key]);
}
</script>
</body>
</html>

View File

@ -36,6 +36,7 @@
<ul>
<li><a href="dom-node-enumerate.html">Node element interface</a></li>
<li><a href="dom-body-enumerate.html">Body element interface</a></li>
<li><a href="dom-document-enumerate.html">Document interface</a></li>
</ul>
<h3>Document element specific</h3>
<ul>