5 testRunner
.dumpAsText();
7 window
.onload = function()
9 frame
= document
.body
.appendChild(document
.createElement("iframe"));
11 frame
.contentWindow
.open
= null;
12 frame
.contentWindow
.__defineGetter__("open", function() {
13 document
.body
.removeChild(frame
);
14 return function() { };
16 frame
.contentDocument
.open(1, 1, 1, 1, 1);
21 This test passes if it doesn't crash.