Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0e23e3f5d9a32dce083c2ca482e59a4d2c54c82f |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height-expected.html |
@@ -0,0 +1,7 @@ |
+<canvas id="canvas" width="100" height="100"></canvas> |
+<script> |
+var canvas = document.getElementById('canvas'); |
+var ctx = canvas.getContext('2d'); |
+ctx.fillStyle = '#0f0'; |
+ctx.fillRect(0, 0, 50, 40); |
+</script> |