зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
393 B
HTML
15 строки
393 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);
|
|
</script>
|
|
</body>
|
|
</html>
|