2009-02-17 20:21:44 +03:00
|
|
|
<!DOCTYPE html>
|
2013-10-23 02:46:40 +04:00
|
|
|
<html class="reftest-wait" style="height: 100%">
|
2009-02-17 20:21:44 +03:00
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function doIt() {
|
|
|
|
var d = document.createElement("div");
|
|
|
|
d.setAttribute("style",
|
|
|
|
"position: absolute; left: 0; right: 0; top: 0; " +
|
|
|
|
"bottom: 0; background: green");
|
|
|
|
document.getElementById("x").appendChild(d);
|
2013-10-23 02:46:40 +04:00
|
|
|
document.documentElement.removeAttribute("class");
|
2009-02-17 20:21:44 +03:00
|
|
|
}
|
2013-10-23 02:46:40 +04:00
|
|
|
window.addEventListener("MozReftestInvalidate", doIt);
|
2009-02-17 20:21:44 +03:00
|
|
|
</script>
|
|
|
|
</head>
|
2013-10-23 02:46:40 +04:00
|
|
|
<body style="height: 100%">
|
2009-02-17 20:21:44 +03:00
|
|
|
<fieldset id="x" style="position: relative; display: table; width: 50%;
|
|
|
|
height: 50%; top: 25%; left: 25%">
|
|
|
|
</fieldset>
|
|
|
|
</body>
|
|
|
|
</html>
|