mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3b0644136d
--HG-- extra : rebase_source : 788c2b3f9666ca654fab67047f6309937360f725
34 lines
1001 B
HTML
34 lines
1001 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=691707
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 691707</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=691707">Mozilla Bug 691707</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 691707 **/
|
|
|
|
var nodeList = document.body.childNodes;
|
|
var properties = [i for (i in nodeList)];
|
|
for (var j = 1; j < nodeList.length; ++j)
|
|
ok(properties.indexOf("" + j) >= 0, "Enumerating hit all numeric properties");
|
|
ok(properties.indexOf("item") >= 0, "Enumerating hit 'item' from the prototype");
|
|
ok(properties.indexOf("length") >= 0, "Enumerating hit 'length' from the prototype");
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|