| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function log(msg) | 5 function log(msg) |
| 6 { | 6 { |
| 7 document.body.appendChild(document.createTextNode(msg + '\n')); | 7 document.body.appendChild(document.createTextNode(msg + '\n')); |
| 8 } | 8 } |
| 9 | 9 |
| 10 function runTests() | 10 function runTests() |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 </script> | 30 </script> |
| 31 </head> | 31 </head> |
| 32 <body onload="runTests();"> | 32 <body onload="runTests();"> |
| 33 <p id="cont"> | 33 <p id="cont"> |
| 34 <span>This <span id="start">tests</span></span> | 34 <span>This <span id="start">tests</span></span> |
| 35 <span>that we don't crash when mutating the dom during</span> | 35 <span>that we don't crash when mutating the dom during</span> |
| 36 <span>an <code id="end">extractContents</code> call.</span> | 36 <span>an <code id="end">extractContents</code> call.</span> |
| 37 </p> | 37 </p> |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |