mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
4af6bcda96
--HG-- extra : rebase_source : 06dd1df6b08d331b38ee8a9edbf6ce07e7841c25
17 lines
428 B
HTML
17 lines
428 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var c = document.getElementById("c");
|
|
c.style.top = "20px";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="c" style="position: absolute; top:0; opacity:0.5; border:1px solid black; width:200px; height:200px;"></canvas>
|
|
</body>
|
|
</html>
|