tenfourfox/dom/bindings/crashtests/949940.html

17 lines
281 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var frameWin = document.getElementById("f").contentWindow;
Object.create(frameWin).self;
}
</script>
</head>
<body onload="boom()">
<iframe id="f" src="data:text/html,3"></iframe>
</body>
</html>