mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
18 lines
323 B
HTML
18 lines
323 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.style.MozBinding = "url('#none')";
|
|
document.body.offsetHeight;
|
|
document.removeChild(document.documentElement)
|
|
document.appendChild(document.createElement("div"));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|