mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26dfad38c3
--HG-- extra : rebase_source : 5780eed342b1780570650d140c7f14f966b7f1e1
67 lines
1.9 KiB
HTML
67 lines
1.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=772869
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 772869</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=772869">Mozilla Bug 772869</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
<select id="s">
|
|
<option name="x"></option>
|
|
<option name="y" id="z"></option>
|
|
<option name="z" id="x"></option>
|
|
<option id="w"></option>
|
|
</select>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 772869 **/
|
|
var opt = $("s").options;
|
|
opt.loopy = "something"
|
|
var names = Object.getOwnPropertyNames(opt);
|
|
is(names.length, 9, "Should have nine entries");
|
|
is(names[0], "0", "Entry 1")
|
|
is(names[1], "1", "Entry 2")
|
|
is(names[2], "2", "Entry 3")
|
|
is(names[3], "3", "Entry 4")
|
|
is(names[4], "x", "Entry 5")
|
|
is(names[5], "y", "Entry 6")
|
|
is(names[6], "z", "Entry 7")
|
|
is(names[7], "w", "Entry 8")
|
|
is(names[8], "loopy", "Entry 9")
|
|
|
|
var names2 = [];
|
|
for (var name in opt) {
|
|
names2.push(name);
|
|
}
|
|
var JS_HAS_SYMBOLS = typeof Symbol === "function";
|
|
is(names2.length, JS_HAS_SYMBOLS ? 11 : 12,
|
|
"Should have eleven enumerated names (or twelve with '@@iterator')");
|
|
is(names2[0], "0", "Enum entry 1")
|
|
is(names2[1], "1", "Enum entry 2")
|
|
is(names2[2], "2", "Enum entry 3")
|
|
is(names2[3], "3", "Enum entry 4")
|
|
is(names2[4], "loopy", "Enum entry 5")
|
|
is(names2[5], "add", "Enum entrry 6")
|
|
is(names2[6], "remove", "Enum entry 7")
|
|
is(names2[7], "length", "Enum entry 8")
|
|
is(names2[8], "selectedIndex", "Enum entry 9")
|
|
is(names2[9], "item", "Enum entry 10")
|
|
is(names2[10], "namedItem", "Enum entry 11")
|
|
if (!JS_HAS_SYMBOLS) {
|
|
is(names2[11], "@@iterator", "Enum entry 12");
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|