3 <script src=
"../../../resources/js-test.js"></script>
6 <p id=
"description"></p>
9 <div id=
"console"></div>
13 'This tests that indexed assignments to items of a NodeList do not override original values. ' +
14 'See http://code.google.com/p/chromium/issues/detail?id=27967');
16 var nodeList
= document
.getElementsByTagName('ol');
17 var first
= nodeList
[0];
18 shouldBeFalse("first == null");
21 for (var i
= 0; i
< 13; i
++) {
22 shouldBe("nodeList[0]", "first");