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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-properties.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/css/getComputedStyle/computed-style-properties.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html
index 6518f11c6738978ff64a0fc5d2f632d08f73c5fe..e190cb560813b3536b3841df67857849e7d90477 100644
--- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html
@@ -66,7 +66,7 @@ function computedStyleFor(id, pseudo, property)
shouldBe("computedStyleFor('outline', null, 'outline-offset')", "'5px'");
shouldBeEqualToString("computedStyleFor('content', 'before', 'content')", "\"text\"");
-shouldBeEqualToString("computedStyleFor('content', 'after', 'content')", "\"test \" url(data:image/gif;base64,R0lGODlhAQABAJAAAP8AAAAAACwAAAAAAQABAAACAgQBADs=)");
+shouldBeEqualToString("computedStyleFor('content', 'after', 'content')", "\"test \" url(\"data:image/gif;base64,R0lGODlhAQABAJAAAP8AAAAAACwAAAAAAQABAAACAgQBADs=\")");
shouldBe("computedStyleFor('counter', null, 'counter-reset')", "'section 0'");
var str = computedStyleFor('subcounter', null, 'counter-reset');
shouldBe("str.indexOf('subsection 0') != -1", "true");

Powered by Google App Engine
This is Rietveld 408576698