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

Side by Side Diff: third_party/WebKit/LayoutTests/dom/domparsing/xmlserializer-xml-namespace.html

Issue 2667303004: Move tests for DOMParser and XMLSerializer to dom/domparsing/. (Closed)
Patch Set: Created 3 years, 10 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
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 type="text/javascript"> 3 <script type="text/javascript">
4 function runTest() 4 function runTest()
5 { 5 {
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 var target = document.getElementById("target"); 9 var target = document.getElementById("target");
10 10
(...skipping 15 matching lines...) Expand all
26 var outputText = document.getElementById("output"); 26 var outputText = document.getElementById("output");
27 outputText.textContent = xmlString; 27 outputText.textContent = xmlString;
28 } 28 }
29 </script> 29 </script>
30 </head> 30 </head>
31 <body onload="runTest()"> 31 <body onload="runTest()">
32 <div id="target"/> 32 <div id="target"/>
33 <div id="output"/> 33 <div id="output"/>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698