Update scroll position immediately after resizing view
[framework/web/webkit-efl.git] / LayoutTests / printing / print-close-crash.html
1 <script>
2 if (window.testRunner) {
3     testRunner.dumpAsText();
4     // DumpRenderTree requires waitUntilDone for this test even though it's not needed.
5     testRunner.waitUntilDone();
6     testRunner.setCanOpenWindows();
7     testRunner.setCloseRemainingWindowsWhenComplete(true);
8 }
9 var w = window.open("data:text/html,foo");
10 w.print();
11 w.close();
12
13 window.onload = function() {
14     if (window.testRunner)
15         testRunner.notifyDone();
16 }
17 </script>
18 This test passes if it doesn't crash.