mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
21 lines
584 B
HTML
21 lines
584 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait" style="display: none">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
document.documentElement.style.display = "";
|
|
document.documentElement.className = "";
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<table style="position: absolute; top: 100px; left: 100px;">
|
|
<tr>
|
|
<td>
|
|
<div style="position: absolute; left: 20px; top: 20px; background: black; height: 20px; width: 20px"></div>
|
|
</td>
|
|
</tr>
|
|
</body>
|
|
</html>
|