mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
42 lines
528 B
HTML
42 lines
528 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function zap()
|
|
{
|
|
var j = document.getElementById("j");
|
|
j.parentNode.removeChild(j);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="setTimeout(zap, 1);">
|
|
|
|
|
|
<div>
|
|
|
|
<form>
|
|
<fieldset>
|
|
<div id="j">
|
|
<div>
|
|
<div>
|
|
<span>
|
|
<input type="submit">
|
|
<label></label>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|