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

Side by Side Diff: LayoutTests/fast/dom/htmlcollection-non-html.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 var elem; 5 var elem;
6 var ns = "http://not-html.test"; 6 var ns = "http://not-html.test";
7 7
8 function testDocumentProperty(attributeName, elementName, base) { 8 function testDocumentProperty(attributeName, elementName, base) {
9 var elem; 9 var elem;
10 if (typeof base == 'undefined') 10 if (typeof base == 'undefined')
11 base = 0; 11 base = 0;
12 12
13 elem = document.createElementNS(ns, elementName); 13 elem = document.createElementNS(ns, elementName);
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 testElementProperty("thead", "rows", "tr"); 92 testElementProperty("thead", "rows", "tr");
93 testElementProperty("tbody", "rows", "tr"); 93 testElementProperty("tbody", "rows", "tr");
94 testElementProperty("tfoot", "rows", "tr"); 94 testElementProperty("tfoot", "rows", "tr");
95 } 95 }
96 </script> 96 </script>
97 </head> 97 </head>
98 <body> 98 <body>
99 <script>runTest();</script> 99 <script>runTest();</script>
100 </body> 100 </body>
101 </html> 101 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/htmlcollection-namedItem.html ('k') | LayoutTests/fast/dom/htmlcollection-protects-base.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698