blob: 0f810b963b1dd8c186d35db1f45720464f92de5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<script>
function boom()
{
var f = document.getElementById("f");
var fd = f.contentDocument;
fd.querySelectorAll("*");
fd.documentElement.innerHTML = "3";
document.body.removeChild(f);
}
</script>
</head>
<body onload="boom();"><iframe id="f" src="data:text/html,<html><head onfocus=2>"></iframe></body>
</html>
|