mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 03:13:09 +09:00
34 lines
514 B
HTML
34 lines
514 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var d = document.getElementById("d");
|
|
d.parentNode.removeChild(d);
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boom, 30);">
|
|
|
|
<div id="d">
|
|
<div style="float: right">
|
|
<table border="1">
|
|
<tr>
|
|
<td style="display: -moz-groupbox"><img></td>
|
|
</tr>
|
|
<tr style="position: absolute">
|
|
<td>TD2</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|