| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |