mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
19 lines
489 B
HTML
19 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
window.addEventListener("MozReftestInvalidate",
|
|
function() {
|
|
document.getElementById("x").style.paddingTop = "2em";
|
|
document.documentElement.className = "";
|
|
},
|
|
false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="x">
|
|
Some text
|
|
</div>
|
|
</body>
|
|
</html>
|