Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / htmlallcollection-call-with-index-caching-bug.html
blob8b65c1cdb9130c3e9f9edf621ad59b13a67fdc16
1 <!DOCTYPE html>
2 <html>
3 <head id="foo">
4 <meta charset="utf-8">
5 <script src="../../resources/js-test.js"></script>
6 </head>
7 <body>
8 <script>
10 description("This tests verifies that calling document.all(name, index) doesn't affect subsequent calls to document.all.item(index)");
12 shouldBe("document.all.item(0)", "document.documentElement");
13 debug("Calling document.all('foo', 0).");
14 document.all('foo', 0)
15 shouldBe("document.all.item(0)", "document.documentElement");
17 </script>
18 </body>
19 </html>