mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
26 lines
466 B
HTML
26 lines
466 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
var s;
|
|
|
|
function boom()
|
|
{
|
|
s = document.createElement("span");
|
|
s.innerHTML = "<video src='data:text/html,' autoplay='autoplay'><\/video>";
|
|
document.body.appendChild(document.createElement("iframe"));
|
|
setTimeout(boom2, 0);
|
|
}
|
|
|
|
function boom2()
|
|
{
|
|
s.innerHTML = "";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boom, 0);"></body>
|
|
</html>
|