mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
72d8ae53e3
--HG-- extra : rebase_source : 459c517fba4b6c2e6e6d95200aebec9369c0edb6
15 lines
400 B
HTML
15 lines
400 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<canvas style="display:block" id="c" width="100" height="100"></canvas>
|
|
<script>
|
|
var ctx = document.getElementById("c").getContext("2d");
|
|
function doTest() {
|
|
document.documentElement.removeAttribute("class");
|
|
ctx.fillRect(0, 0, 100, 100);
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|