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

Side by Side Diff: third_party/WebKit/LayoutTests/dom/domparsing/xmlserializer-entities.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> 1 <html>
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 ns = 'http://www.w3.org/1999/xhtml'; 9 var ns = 'http://www.w3.org/1999/xhtml';
10 var xhtml = document.implementation.createDocument(ns , 'html', null); 10 var xhtml = document.implementation.createDocument(ns , 'html', null);
(...skipping 15 matching lines...) Expand all
26 26
27 var outputText = document.getElementById("output"); 27 var outputText = document.getElementById("output");
28 outputText.textContent = xmlString; 28 outputText.textContent = xmlString;
29 } 29 }
30 </script> 30 </script>
31 </head> 31 </head>
32 <body onload="runTest()"> 32 <body onload="runTest()">
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