| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../resources/js-test.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 description("Moving pending scripts between detached and non-detached documents
should not crash."); | 6 description("Moving pending scripts between detached and non-detached documents
should not crash."); |
| 7 | 7 |
| 8 window.jsTestIsAsync = true; | 8 window.jsTestIsAsync = true; |
| 9 | 9 |
| 10 if (window.testRunner) { | 10 if (window.testRunner) { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // Pass if no asserts triggered by the above script element document transfe
rs. | 44 // Pass if no asserts triggered by the above script element document transfe
rs. |
| 45 finishJSTest(); | 45 finishJSTest(); |
| 46 } | 46 } |
| 47 window.onload = start; | 47 window.onload = start; |
| 48 </script> | 48 </script> |
| 49 </head> | 49 </head> |
| 50 <body> | 50 <body> |
| 51 <div id="store_div"></div> | 51 <div id="store_div"></div> |
| 52 </body> | 52 </body> |
| 53 </html> | 53 </html> |
| OLD | NEW |