mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
bd962257f1
--HG-- extra : rebase_source : e4df7d98765aaa2c600044d69f8714568f1d6109
20 lines
340 B
HTML
20 lines
340 B
HTML
<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>
|