mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
15 lines
354 B
HTML
15 lines
354 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<embed type="application/x-test" id="p"
|
|
style="width:200px; height:400px;"></embed>
|
|
<script>
|
|
var p = document.getElementById("p");
|
|
function doTest() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|