Index: LayoutTests/fast/canvas/canvas-partial-invalidation-zoomed-expected.html |
diff --git a/LayoutTests/fast/canvas/canvas-partial-invalidation-zoomed-expected.html b/LayoutTests/fast/canvas/canvas-partial-invalidation-zoomed-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0a8a8af4da31b5c092014cf7be8a2fef92f4dbda |
--- /dev/null |
+++ b/LayoutTests/fast/canvas/canvas-partial-invalidation-zoomed-expected.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<html> |
+<body style="zoom: 1.2"> |
+ <p>An all green square should appear below</p> |
+ <canvas id="A" width=300 height=300></canvas> |
+ <script type="text/javascript" charset="utf-8"> |
+ var context = document.getElementById("A").getContext("2d"); |
+ context.fillStyle = 'green'; |
+ context.fillRect(1, 1, 298, 298); |
+ </script> |
+</body> |
+</html> |