diff options
Diffstat (limited to 'layout/reftests/image-element/canvas-outside-document-invalidate-01.html')
-rw-r--r-- | layout/reftests/image-element/canvas-outside-document-invalidate-01.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/image-element/canvas-outside-document-invalidate-01.html b/layout/reftests/image-element/canvas-outside-document-invalidate-01.html new file mode 100644 index 0000000000..0b4a1d851e --- /dev/null +++ b/layout/reftests/image-element/canvas-outside-document-invalidate-01.html @@ -0,0 +1,30 @@ +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/licenses/publicdomain/ + + Test that painting in an out-of-document canvas causes a repaint. +--> +<!DOCTYPE html> +<html class="reftest-wait"> +<body style="background: -moz-element(#e) darkred"> + +<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 () { + setTimeout(function () { + ctx.fillStyle = "white"; + ctx.fillRect(0, 0, 1, 1); + document.documentElement.className = ""; + }, 0); +}); + +document.mozSetImageElement("e", canvas); + +</script> +</body> +</html> |