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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-units-em-liveness-expected.html

Issue 1886063002: Make canvas filters use the font size in effect when the filter is set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again Created 4 years, 8 months 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-units-em-liveness-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-units-em-liveness-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-units-em-liveness-expected.html
index 2e59060a6823f110e6c119d965fa1e1368a77dc5..54f88906243691031cd80ced7189e267d175b87d 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-units-em-liveness-expected.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-units-em-liveness-expected.html
@@ -3,5 +3,6 @@
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
-ctx.fillRect(25, 25, 50, 50);
+ctx.fillRect(25, 25, 25, 50);
+ctx.fillRect(60, 25, 25, 50);
</script>

Powered by Google App Engine
This is Rietveld 408576698