Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: true
- Manifest: netwerk/test/crashtests/crashtests.list
<!DOCTYPE html>↩
<script>↩
function boom()↩
{↩
frame.src = "javascript:'<html><body>1</body></html>';";↩
document.body.appendChild(frame);↩
var frameWin = frame.contentWindow;↩
↩
var resizeListener = function() {↩
frameWin.removeEventListener("resize", resizeListener, false);↩
frameWin.document.write("3...");↩
};↩
frameWin.addEventListener("resize", resizeListener, false);↩
↩
frameWin.document.write("2...");↩
}↩
↩
</script>↩
<body onload="boom();"></body>↩
</html>↩