mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
33 lines
914 B
HTML
33 lines
914 B
HTML
<!--
|
|
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.fillStyle = "white";
|
|
ctx.mozTextStyle = "50px bold Arial";
|
|
ctx.translate(-8, 18);
|
|
ctx.mozDrawText("•");
|
|
document.documentElement.className = "";
|
|
}, false);
|
|
|
|
document.mozSetImageElement("e", canvas);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|