summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/large-canvas.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/large-canvas.html')
-rw-r--r--layout/reftests/canvas/large-canvas.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/layout/reftests/canvas/large-canvas.html b/layout/reftests/canvas/large-canvas.html
new file mode 100644
index 0000000000..c55c7442ce
--- /dev/null
+++ b/layout/reftests/canvas/large-canvas.html
@@ -0,0 +1,11 @@
+<!DOCTYPE HTML>
+<html>
+<body style="margin:0px; overflow:hidden">
+<canvas style="display:block" id="c" width="1024" height="1024"></canvas>
+<script>
+var ctx = document.getElementById("c").getContext("2d");
+ctx.fillStyle = "lime";
+ctx.fillRect(0, 0, 1024, 1024);
+</script>
+</body>
+</html>