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