gecko-dev/layout/tables/crashtests/367755.xhtml

25 строки
365 B
HTML
Исходник Обычный вид История

<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2013-01-27 00:28:55 +04:00
<head>
<script>
function boom()
{
document.getElementById("tr").style.cssFloat = "right";
document.documentElement.removeAttribute("class");
2013-01-27 00:28:55 +04:00
}
</script>
</head>
<body onload="setTimeout(boom, 300);">
<table border="1">
<tr id="tr">
<td>Foo</td>
</tr>
</table>
</body>
</html>