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

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

Issue 1363233003: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interpolation tests Created 5 years, 3 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 d458da519f18d70f71e56e7272c594d5aaee2d2e..82b847720c98581285b00e8c1fb8c5ac88ee7f11 100644
--- a/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html
+++ b/third_party/WebKit/LayoutTests/fast/masking/parsing-mask.html
@@ -45,8 +45,8 @@ function negativeTest(property, value) {
testInner("-webkit-mask", "none", "none");
testInner("-webkit-mask", "none, none", "none, none");
testInner("-webkit-mask", "none, none, none", "none, none, none");
-testInner("-webkit-mask", "url(file:///image.png), none", "url(file:///image.png), none");
-testInner("-webkit-mask", "none, url(file:///image.png)", "none, url(file:///image.png)");
+testInner("-webkit-mask", "url(file:///image.png), none", 'url("file:///image.png"), none');
+testInner("-webkit-mask", "none, url(file:///image.png)", 'none, url("file:///image.png")');
// test mask-position

Powered by Google App Engine
This is Rietveld 408576698