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

Side by Side Diff: LayoutTests/svg/custom/document-all-includes-svg.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script> 5 <script>
6 function runTest() 6 function runTest()
7 { 7 {
8 shouldBe("document.all['test1'].length", "2"); 8 shouldBe("document.all['test1'].length", "2");
9 shouldBe("document.all['test2'].length", "2"); 9 shouldBe("document.all['test2'].length", "2");
10 shouldBeEqualToString("document.all['test3'].nodeName", 'A'); 10 shouldBeEqualToString("document.all['test3'].nodeName", 'A');
11 shouldBe("document.all['test4'].length", "2"); 11 shouldBe("document.all['test4'].length", "2");
12 shouldBe("document.all['test5'].length", "2"); 12 shouldBe("document.all['test5'].length", "2");
13 } 13 }
14 </script> 14 </script>
15 </head> 15 </head>
16 <body onload="runTest()"> 16 <body onload="runTest()">
17 <a id="test1"></a> 17 <a id="test1"></a>
18 <svg id="test1"/> 18 <svg id="test1"/>
19 19
20 <svg id="test2"/> 20 <svg id="test2"/>
21 <a id="test2"></a> 21 <a id="test2"></a>
22 22
23 <a id="test3"></a> 23 <a id="test3"></a>
24 24
25 <a id="test4"></a> 25 <a id="test4"></a>
26 <div id="test4"></div> 26 <div id="test4"></div>
27 27
28 <svg id="test5"></svg> 28 <svg id="test5"></svg>
29 <svg id="test5"></svg> 29 <svg id="test5"></svg>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/clone-node.html ('k') | LayoutTests/svg/custom/focus-event-handling-keyboard.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698