| OLD | NEW |
| 1 <html style="-webkit-flow-from: flow"> | 1 <html style="-webkit-flow-from: flow"> |
| 2 <body> | 2 <body> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 <script> | 4 <script> |
| 5 description("Tests that removing a region that is sibling to the flow doesn't cr
ash."); | 5 description("Tests that removing a region that is sibling to the flow doesn't cr
ash."); |
| 6 if (window.testRunner) | 6 if (window.testRunner) |
| 7 testRunner.dumpAsText(); | 7 testRunner.dumpAsText(); |
| 8 | 8 |
| 9 function runTest() { | 9 function runTest() { |
| 10 document.open(); | 10 document.open(); |
| 11 document.write("Tests that removing a region that is sibling to the flow doesn
't crash.<br>"); | 11 document.write("Tests that removing a region that is sibling to the flow doesn
't crash.<br>"); |
| 12 document.write('PASS'); | 12 document.write('PASS'); |
| 13 document.close(); | 13 document.close(); |
| 14 } | 14 } |
| 15 | 15 |
| 16 window.onload=runTest; | 16 window.onload=runTest; |
| 17 </script> | 17 </script> |
| 18 <script src="../js/resources/js-test-post.js"></script> | |
| 19 </body> | 18 </body> |
| 20 </html> | 19 </html> |
| OLD | NEW |