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

Side by Side Diff: LayoutTests/fast/dom/html-collections-named-getter.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 <body> 3 <body>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 <div id="container"></div> 5 <div id="container"></div>
6 <form></form> 6 <form></form>
7 <script> 7 <script>
8 8
9 description("This tests verifies that namedItem and named getter returns the fir st matched item for all but all, options, and form controls collections."); 9 description("This tests verifies that namedItem and named getter returns the fir st matched item for all but all, options, and form controls collections.");
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 testFirstItemReturnsFirstMatch('document.applets', 0, ['applet', 'applet']); 92 testFirstItemReturnsFirstMatch('document.applets', 0, ['applet', 'applet']);
93 testFirstItemReturnsFirstMatch('document.embeds', 0, ['embed', 'embed']); 93 testFirstItemReturnsFirstMatch('document.embeds', 0, ['embed', 'embed']);
94 testFirstItemReturnsFirstMatch('document.forms', 1, ['form', 'form']); 94 testFirstItemReturnsFirstMatch('document.forms', 1, ['form', 'form']);
95 testFirstItemReturnsFirstMatch('document.links', 0, ['a', 'a', 'area'], {'href': 'some url'}); 95 testFirstItemReturnsFirstMatch('document.links', 0, ['a', 'a', 'area'], {'href': 'some url'});
96 testFirstItemReturnsFirstMatch('document.anchors', 0, ['a', 'a'], {'name': 'some name'}); 96 testFirstItemReturnsFirstMatch('document.anchors', 0, ['a', 'a'], {'name': 'some name'});
97 testFirstItemReturnsFirstMatch('document.scripts', 2, ['script', 'script']); 97 testFirstItemReturnsFirstMatch('document.scripts', 2, ['script', 'script']);
98 98
99 var successfullyParsed = true; 99 var successfullyParsed = true;
100 100
101 </script> 101 </script>
102 <script src="../js/resources/js-test-post.js"></script>
103 </body> 102 </body>
104 </html> 103 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698