blob: 18513256b7a0794db35fcae0811c534f81c697f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container" style="border-width: 10px; padding: 50px"
>surrounding <span id="rel"
style="left: 0; top: 0;"
>position relative</span> text</div>
<script>
document.addEventListener("MozReftestInvalidate", function() {
var rel = document.getElementById("rel");
rel.style.top = "50%";
rel.style.left = "50%";
document.documentElement.removeAttribute("class");
});
</script>
</body>
</html>
|