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

Side by Side Diff: LayoutTests/fast/innerHTML/innerHTML-svg-read.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 </head> 4 </head>
5 <body> 5 <body>
6 <div style="visibility:hidden"> 6 <div style="visibility:hidden">
7 <svg id="emptysvg"></svg> 7 <svg id="emptysvg"></svg>
8 <svg id="rectsvg"><rect/></svg> 8 <svg id="rectsvg"><rect/></svg>
9 <svg id="foreign" width="100" height="30"><foreignObject width="100" height="3 0"><p>html</p></foreignObject></svg> 9 <svg id="foreign" width="100" height="30"><foreignObject width="100" height="3 0"><p>html</p></foreignObject></svg>
10 </div> 10 </div>
11 <script> 11 <script>
12 description("Test that accessing innerHTML and outerHTML properties works on SVG elements"); 12 description("Test that accessing innerHTML and outerHTML properties works on SVG elements");
13 13
(...skipping 12 matching lines...) Expand all
26 function outerHTML(id) { 26 function outerHTML(id) {
27 return document.getElementById(id).outerHTML; 27 return document.getElementById(id).outerHTML;
28 } 28 }
29 29
30 for (var i in tests) { 30 for (var i in tests) {
31 shouldBeEqualToString(tests[i][0], tests[i][1]); 31 shouldBeEqualToString(tests[i][0], tests[i][1]);
32 } 32 }
33 </script> 33 </script>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/innerHTML/innerHTML-special-elements.html ('k') | LayoutTests/fast/innerHTML/innerHTML-svg-write.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698