Index: LayoutTests/fast/canvas/canvas-drawImage-out-of-bounds-src-expected.html |
diff --git a/LayoutTests/fast/canvas/canvas-drawImage-out-of-bounds-src-expected.html b/LayoutTests/fast/canvas/canvas-drawImage-out-of-bounds-src-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..35f541beab159a91d86889e99cd080bde7f05b83 |
--- /dev/null |
+++ b/LayoutTests/fast/canvas/canvas-drawImage-out-of-bounds-src-expected.html |
@@ -0,0 +1,13 @@ |
+<html> |
+<body> |
+<canvas id="c1" width="300" height="300"></canvas> |
+<canvas id="c2" width="300" height="300"></canvas> |
+<script type="text/javascript"> |
+var ctx1 = document.getElementById('c1').getContext('2d'); |
+var ctx2 = document.getElementById('c2').getContext('2d'); |
+ctx1.fillStyle = 'green'; |
+ctx2.fillStyle = 'green'; |
+ctx1.fillRect(50, 50, 200, 200); |
+ctx2.fillRect(50, 50, 200, 200); |
+</script> |
+</body></html> |