Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!--Test must be in quirks mode for document.all to work-->
2 <html>
3 <!--
4 https://bugzilla.mozilla.org/show_bug.cgi?id=481440
5 -->
6 <head>
7 <title>Test for Bug 481440</title>
8 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
10 </head>
11 <body>
12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=481440">Mozilla Bug 481440</a>
13 <p id="display"></p>
14 <div id="content" style="display: none">
15 <input name="x" id="y">
16 </div>
17 <pre id="test">
18 <script type="application/javascript">
20 /** Test for Bug 481440 **/
21 // Do a bunch of getElementById calls to catch hashtables auto-going live
22 for (var i = 0; i < 500; ++i) {
23 document.getElementById(i);
24 }
25 is(document.all["x"], document.getElementById("y"),
26 "Unexpected node");
27 </script>
28 </pre>
29 </body>
30 </html>