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

Unified Diff: third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html

Issue 1715513002: Move background related shorthands into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase test Created 4 years, 10 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/masking/parsing-mask.html
diff --git a/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html b/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html
index 82b847720c98581285b00e8c1fb8c5ac88ee7f11..32f846ca00cb3cf2d30e00f6c630de131788d553 100644
--- a/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html
+++ b/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html
@@ -77,11 +77,11 @@ testInner("-webkit-mask", "center center", "50% 50%");
testInner("-webkit-mask-position", "left 10px top 15px", "left 10px top 15px");
testInner("-webkit-mask-position", "left 10% top 30%", "left 10% top 30%");
-testInner("-webkit-mask-position", "right top 15px", "right 0% top 15px");
-testInner("-webkit-mask-position", "left 10px center", "left 10px top 50%");
-testInner("-webkit-mask-position", "center top 20px", "left 50% top 20px");
-testInner("-webkit-mask-position", "center left 30px", "left 30px top 50%");
-testInner("-webkit-mask-position", "left 20% top", "left 20% top 0%");
+testInner("-webkit-mask-position", "right top 15px", "right top 15px");
+testInner("-webkit-mask-position", "left 10px center", "left 10px center");
+testInner("-webkit-mask-position", "center top 20px", "center top 20px");
+testInner("-webkit-mask-position", "center left 30px", "left 30px center");
+testInner("-webkit-mask-position", "left 20% top", "left 20% top");
// test mask-source-type
testInner("mask-source-type", "alpha", "alpha");

Powered by Google App Engine
This is Rietveld 408576698