Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: LayoutTests/fast/dom/htmlallcollection-call-with-index-caching-bug.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head id="foo"> 3 <head id="foo">
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 9
10 description("This tests verifies that calling document.all(name, index) doesn't affect subsequent calls to document.all.item(index)"); 10 description("This tests verifies that calling document.all(name, index) doesn't affect subsequent calls to document.all.item(index)");
11 11
12 shouldBe("document.all.item(0)", "document.documentElement"); 12 shouldBe("document.all.item(0)", "document.documentElement");
13 debug("Calling document.all('foo', 0)."); 13 debug("Calling document.all('foo', 0).");
14 document.all('foo', 0) 14 document.all('foo', 0)
15 shouldBe("document.all.item(0)", "document.documentElement"); 15 shouldBe("document.all.item(0)", "document.documentElement");
16 16
17 </script> 17 </script>
18 <script src="../js/resources/js-test-post.js"></script>
19 </body> 18 </body>
20 </html> 19 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/html-collections-named-getter.html ('k') | LayoutTests/fast/dom/htmlallcollection-reachable.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698