summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/image-shadow.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/image-shadow.html')
-rw-r--r--layout/reftests/canvas/image-shadow.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/canvas/image-shadow.html b/layout/reftests/canvas/image-shadow.html
new file mode 100644
index 0000000000..47fe121c4f
--- /dev/null
+++ b/layout/reftests/canvas/image-shadow.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML>
+<html>
+<body onload="doTest()">
+<canvas id="c" width="200" height="200" style="display:block"></canvas>
+<img id="img" src="image_green-16x16.png" style="display:none">
+<script>
+var c = document.getElementById("c");
+var img = document.getElementById("img");
+var ctx = c.getContext("2d");
+ctx.shadowColor = "black";
+ctx.shadowOffsetX = 0;
+ctx.shadowOffsetY = 10;
+function doTest() {
+ ctx.drawImage(img, 0, 0);
+}
+</script>
+</body>
+</html>