Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-fill-paint-color-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-fill-paint-color-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-fill-paint-color-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5933fe4c350d9b19c9c5e5319b3b64cb41a20edd |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-fill-paint-color-expected.html |
@@ -0,0 +1,9 @@ |
+<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, canvas.width, canvas.height); |
+ctx.fillStyle = '#00f'; |
+ctx.fillRect(40, 40, 20, 20); |
+</script> |