Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-stroke-paint-pattern-expected.html

Issue 1543593002: Forward fill and stroke styles from 2d canvas to canvas filters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-stroke-paint-pattern-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-stroke-paint-pattern-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-stroke-paint-pattern-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..b9638cb1228c80b10ad50fffd574b948fbb22c8b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-stroke-paint-pattern-expected.html
@@ -0,0 +1,24 @@
+<canvas id="canvas" width="100" height="100"></canvas>
+<script>
+var canvas = document.getElementById('canvas');
+var ctx = canvas.getContext('2d');
+var canvas2 = document.createElement('canvas');
+canvas2.width = 20;
+canvas2.height = 20;
+var ctx2 = canvas2.getContext('2d');
+
+ctx2.fillStyle = '#00f';
+ctx2.fillRect(0, 0, 10, 10);
+ctx2.fillStyle = '#0f0';
+ctx2.fillRect(0, 10, 10, 10);
+ctx2.fillStyle = '#f00';
+ctx2.fillRect(10, 0, 10, 10);
+ctx2.fillStyle = '#ff0';
+ctx2.fillRect(10, 10, 10, 10);
+
+var pattern = ctx.createPattern(canvas2, 'repeat');
+ctx.fillStyle = pattern;
+ctx.fillRect(0, 0, canvas.width, canvas.height);
+ctx.fillStyle = '#f0f';
+ctx.fillRect(40, 40, 20, 20);
+</script>

Powered by Google App Engine
This is Rietveld 408576698