471f163155ed9343bb45898193b7e461b1e91c58
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / parser / document-open-in-unload.html
1 This test passes if it doesn't crash.
2 <iframe src="data:text/plain,Hi"></iframe>
3 <script>
4 if (window.testRunner)
5     testRunner.dumpAsText();
6
7 frames[0].onunload = function () {
8     document.open();
9 };
10 </script>