summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1024473-1.html
blob: e6f2b9a0fbe7fbbef883b554663c48ee6a483e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>