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

Side by Side Diff: LayoutTests/svg/dom/SVGLengthList-getItem.xhtml

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 xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head> 2 <head>
3 <script>window.enablePixelTesting = true;</script> 3 <script>window.enablePixelTesting = true;</script>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200"> 7 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200">
8 <text id="text1" x="50 100 150" y="50">ABC</text> 8 <text id="text1" x="50 100 150" y="50">ABC</text>
9 </svg> 9 </svg>
10 10
11 <p id="description"></p> 11 <p id="description"></p>
12 <div id="console"></div> 12 <div id="console"></div>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 <![CDATA[ 14 <![CDATA[
(...skipping 12 matching lines...) Expand all
27 shouldBe("text1.x.baseVal.getItem(0).value", "50"); 27 shouldBe("text1.x.baseVal.getItem(0).value", "50");
28 shouldBe("text1.x.baseVal.getItem(1).value", "100"); 28 shouldBe("text1.x.baseVal.getItem(1).value", "100");
29 shouldBe("text1.x.baseVal.getItem(2).value", "150"); 29 shouldBe("text1.x.baseVal.getItem(2).value", "150");
30 shouldThrow("text1.x.baseVal.getItem(3)"); 30 shouldThrow("text1.x.baseVal.getItem(3)");
31 shouldThrow("text1.x.baseVal.getItem(100)"); 31 shouldThrow("text1.x.baseVal.getItem(100)");
32 32
33 ]]> 33 ]]>
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/SVGLengthList-basics.xhtml ('k') | LayoutTests/svg/dom/SVGLengthList-initialize.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698