summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html b/testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html
new file mode 100644
index 0000000000..a21a990f98
--- /dev/null
+++ b/testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-003-ref.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+<style>
+html, body { margin: 0; padding: 0; }
+</style>
+<body>
+<canvas id ="canvas" width="60" height="80" style="position:relative; top:10px; left:20px"></canvas>
+<script>
+var canvas = document.getElementById('canvas');
+var context = canvas.getContext("2d");
+context.fillStyle = 'green';
+context.fillRect(0, 0, 60, 80);
+</script>
+</body>
+</html>