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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months 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
(Empty)
1 <html>
2 <body>
3 <div id='div1'></div>
4 <div id='div2'></div>
5
6 <script>
7 if (window.layoutTestController)
8 layoutTestController.dumpAsText();
9
10 var NodeList = document.getElementsByTagName('div');
11 var div1 = NodeList.div1;
12 var div2 = NodeList.div2;
13 if (div1 && div2) {
14 document.write('PASS: Items can be retrieved by name on node lists.');
15 } else {
16 document.write('FAIL: Items cannot be retrieved by name on node lists.');
17 }
18 </script>
19
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698