This commit is contained in:
Jesse Ruderman 2010-12-12 12:54:26 -08:00
Родитель 5770046d6f
Коммит 4d6842a4e5
2 изменённых файлов: 27 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,26 @@
<html>
<head>
<script>
function boom()
{
var frame = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
document.documentElement.appendChild(frame);
var framedoc = frame.contentDocument;
document.documentElement.removeChild(frame);
framedoc.removeChild(framedoc.documentElement);
framedoc.appendChild(frame);
try { frame.appendChild(undefined); } catch(e) { }
document.removeChild(document.documentElement);
document.appendChild(frame);
}
</script>
</head>
<body onload="boom();"></body>
</html>

Просмотреть файл

@ -23,6 +23,7 @@ load 503286-1.html
load 504000-1.html
load 509075-1.html
load 512815-1.html
load 515726-1.html
load 545291-1.html
load 558979.html
load 582649.html