summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/transformed-clip-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/transformed-clip-ref.html')
-rw-r--r--layout/reftests/canvas/transformed-clip-ref.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/canvas/transformed-clip-ref.html b/layout/reftests/canvas/transformed-clip-ref.html
new file mode 100644
index 0000000000..c2efdfe101
--- /dev/null
+++ b/layout/reftests/canvas/transformed-clip-ref.html
@@ -0,0 +1,15 @@
+<html>
+<body>
+ <canvas width="500" height="500"></canvas>
+<script>
+ var canvas = document.getElementsByTagName('canvas')[0];
+ var ctx = canvas.getContext('2d');
+
+ ctx.fillStyle = "red";
+ ctx.beginPath();
+ ctx.rect(250, 250, 50, 50);
+ ctx.clip();
+ ctx.fillRect(0,0,500,500);
+</script>
+</body>
+</html>