| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <div style="content:url(//%);"></div> | 2 <div style="content:url(//%);"></div> |
| 3 <div style="content:url(http://|server|/);"></div> | 3 <div style="content:url(http://|server|/);"></div> |
| 4 An invalid URL in the "content" style property should not cause a crash when the
browser navigates away from the page. | 4 An invalid URL in the "content" style property should not cause a crash when the
browser navigates away from the page. |
| 5 | 5 |
| 6 FAIL - The browser should have navigated to resources/pass.html. | 6 FAIL - The browser should have navigated to resources/pass.html. |
| 7 <script> | 7 <script> |
| 8 if (window.testRunner) { | 8 if (window.testRunner) { |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 testRunner.waitUntilDone(); | 10 testRunner.waitUntilDone(); |
| 11 } | 11 } |
| 12 window.location.href = 'resources/pass.html'; | 12 onload = function() { |
| 13 window.location.href = 'resources/pass.html'; |
| 14 }; |
| 13 </script> | 15 </script> |
| 14 </html> | 16 </html> |
| OLD | NEW |