summaryrefslogtreecommitdiffstats
path: root/layout/reftests/image-element/canvas-outside-document-invalidate-02.html
blob: 22f5910627bf8238b69093cc4e9dbbbb56610a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/licenses/publicdomain/

     Test that a complete redraw of the context invalidates the rendering observer, too.
     (mozDrawText calls nsCanvasRenderingContext2D::Redraw() without a dirty rect to invalidate everything.)
-->
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<body style="background: -moz-element(#e) white">

<script>

var canvas = document.createElement("canvas");
canvas.width = canvas.height = 1;
var ctx = canvas.getContext('2d');
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 1, 1);
window.addEventListener("MozReftestInvalidate", function () {
  ctx.strokeStyle = "white";
  ctx.font = "50px bold Arial";
  ctx.translate(-8, 18);
  ctx.lineWidth = 50;
  ctx.strokeText("•", 0, 0);
  document.documentElement.className = "";
});

document.mozSetImageElement("e", canvas);

</script>
</body>
</html>