OLD | NEW |
---|---|
(Empty) | |
1 description("document.open() - propagate exception thrown when accessing window. open."); | |
2 | |
3 var frame = document.body.appendChild(document.createElement("iframe")); | |
4 frame.contentWindow.__defineGetter__("open", function() { throw 'PASS (no crash) ';}); | |
5 shouldThrow("frame.contentDocument.open(1, 1, 1, 1, 1);"); | |
6 | |
OLD | NEW |