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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/script-tests/filter-property.js

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/css3/filters/script-tests/filter-property.js
diff --git a/third_party/WebKit/LayoutTests/css3/filters/script-tests/filter-property.js b/third_party/WebKit/LayoutTests/css3/filters/script-tests/filter-property.js
index 22402dcd18f3da19489ef271d3163ae44c9c248d..fc94f67b0ddc9e2bbd856331e76b6eac9553be18 100644
--- a/third_party/WebKit/LayoutTests/css3/filters/script-tests/filter-property.js
+++ b/third_party/WebKit/LayoutTests/css3/filters/script-tests/filter-property.js
@@ -13,6 +13,6 @@ shouldBe("cssRule.type", "1");
var declaration = cssRule.style;
shouldBe("declaration.length", "1");
-shouldBe("declaration.getPropertyValue('-webkit-filter')", "'url(\\'#a\\') url(\\'#b\\')'");
+shouldBeEqualToString("declaration.getPropertyValue('-webkit-filter')", 'url("#a") url("#b")');
successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698