mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e10bc1e1f7
--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>
|