gecko-dev/layout/reftests/bugs/1024473-1.html
Markus Stange 9cc4d44872 Bug 1024473 - Update canvas mask layer even when nothing in the canvas changed. r=mattwoodrow
* * *
Bug 1024473 - Fix the test. CLOSED TREE

--HG--
extra : rebase_source : ec81f6281d1651bbf1f2a1574bc6fd1a54dbdcf1
2014-06-25 10:37:58 +02:00

17 lines
533 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<title>Mask layer on canvas layer needs to update even if canvas wasn't dirtied</title>
</style>
<canvas id="canvas" height="100" width="200" style="border-radius: 20px;"></canvas>
<script>
var canvas = document.getElementById("canvas");
var cx = canvas.getContext("2d");
cx.fillStyle="lime";
cx.fillRect(0, 0, 200, 100);
window.addEventListener("MozReftestInvalidate", function() {
canvas.style.borderRadius = "40px";
document.documentElement.removeAttribute("class");
});
</script>