| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body><pre id="console"></pre></body> | 3 <body><pre id="console"></pre></body> |
| 4 <script> | 4 <script> |
| 5 function write(str) { | 5 function write(str) { |
| 6 pre = document.getElementById('console'); | 6 pre = document.getElementById('console'); |
| 7 text = document.createTextNode(str + '\n'); | 7 text = document.createTextNode(str + '\n'); |
| 8 pre.appendChild(text); | 8 pre.appendChild(text); |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 if (window.testRunner) { | 36 if (window.testRunner) { |
| 37 window.testRunner.dumpAsText(); | 37 window.testRunner.dumpAsText(); |
| 38 window.testRunner.waitUntilDone(); | 38 window.testRunner.waitUntilDone(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 window.postMessage("Message 1", "*"); | 41 window.postMessage("Message 1", "*"); |
| 42 </script> | 42 </script> |
| 43 </html> | 43 </html> |
| 44 | 44 |
| OLD | NEW |