summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/evenodd-fill-3.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/evenodd-fill-3.html')
-rw-r--r--layout/reftests/canvas/evenodd-fill-3.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/canvas/evenodd-fill-3.html b/layout/reftests/canvas/evenodd-fill-3.html
new file mode 100644
index 0000000000..f07bb53c5b
--- /dev/null
+++ b/layout/reftests/canvas/evenodd-fill-3.html
@@ -0,0 +1,26 @@
+<html>
+<head>
+ <script type="text/javascript">
+window.onload = function() {
+ var ctx = document.getElementById("c1").getContext("2d");
+
+ ctx.moveTo(50, 50);
+ ctx.lineTo(250, 50);
+ ctx.lineTo(250, 250);
+ ctx.lineTo(50, 250);
+ ctx.lineTo(50, 50);
+
+ ctx.moveTo(100, 100);
+ ctx.lineTo(100, 200);
+ ctx.lineTo(200, 200);
+ ctx.lineTo(200, 100);
+ ctx.lineTo(100, 100);
+
+ ctx.fill("evenodd");
+}
+ </script>
+</head>
+<body>
+ <div><canvas id="c1" width="300" height="300"></canvas></div>
+</body>
+</html>