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);
9 var w
= window
.open("data:text/html,foo");
13 window
.onload = function() {
14 if (window
.testRunner
)
15 testRunner
.notifyDone();
18 This test passes if it doesn't crash.