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

Side by Side Diff: LayoutTests/fast/dom/Element/node-list-identity.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 6
7 <ol name='name1' class='class2'/> 7 <ol name='name1' class='class2'/>
8 <ol name='name2' class='class1'/> 8 <ol name='name2' class='class1'/>
9 <p name='name1' class='class1'/> 9 <p name='name1' class='class1'/>
10 10
11 <script> 11 <script>
12 description("Test checking that node list fetched by various queries have proper object identity"); 12 description("Test checking that node list fetched by various queries have proper object identity");
13 13
14 function areSame(expr) { shouldBeTrue(expr + ' === ' + expr) }; 14 function areSame(expr) { shouldBeTrue(expr + ' === ' + expr) };
15 15
16 areSame('document.getElementsByTagName("ol")'); 16 areSame('document.getElementsByTagName("ol")');
17 areSame('document.getElementsByName("name1")'); 17 areSame('document.getElementsByName("name1")');
18 areSame('document.getElementsByClassName("class1")'); 18 areSame('document.getElementsByClassName("class1")');
19 </script> 19 </script>
20 <script src="../../js/resources/js-test-post.js"></script>
21 </body> 20 </body>
22 </html> 21 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Element/id-in-param.html ('k') | LayoutTests/fast/dom/Element/parent-node-interface.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698