summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/726951-shadow-clips-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/726951-shadow-clips-ref.html')
-rw-r--r--layout/reftests/canvas/726951-shadow-clips-ref.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/canvas/726951-shadow-clips-ref.html b/layout/reftests/canvas/726951-shadow-clips-ref.html
new file mode 100644
index 0000000000..b7be1ec0c7
--- /dev/null
+++ b/layout/reftests/canvas/726951-shadow-clips-ref.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<head>
+
+<body>
+ <canvas id="mycanvas" width="200" height="200"></canvas>
+
+ <script type="text/javascript">
+ var cx = document.getElementById('mycanvas').getContext('2d');
+ cx.beginPath();
+ cx.rect(10, 10, 50, 50);
+ cx.clip();
+ cx.beginPath();
+ cx.rect(0, 0, 50, 50);
+ cx.shadowColor = "black";
+ cx.shadowOffsetX = 10;
+ cx.shadowOffsetY = 10;
+ cx.fill();
+ </script>