| 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 25 matching lines...) Expand all Loading... |
| 36 </script> | 36 </script> |
| 37 </head> | 37 </head> |
| 38 <body onload="runTests();"> | 38 <body onload="runTests();"> |
| 39 <div id="cont" contenteditable="true"> | 39 <div id="cont" contenteditable="true"> |
| 40 <span>This <span id="start">tests</span></span> | 40 <span>This <span id="start">tests</span></span> |
| 41 <span>that we don't crash when <code id="end">mutating</code> the dom</s
pan> | 41 <span>that we don't crash when <code id="end">mutating</code> the dom</s
pan> |
| 42 <span>during execution of an InsertHTML command.</span> | 42 <span>during execution of an InsertHTML command.</span> |
| 43 </div> | 43 </div> |
| 44 </body> | 44 </body> |
| 45 </html> | 45 </html> |
| OLD | NEW |