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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/csstext-of-content-string.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/csstext-of-content-string.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/csstext-of-content-string.html b/third_party/WebKit/LayoutTests/fast/css/csstext-of-content-string.html
index a55d7d56cbebfa97a335fa2fc300970ddf0b8d89..8295da96250bcb17898502878d3c5bef6d6a9063 100644
--- a/third_party/WebKit/LayoutTests/fast/css/csstext-of-content-string.html
+++ b/third_party/WebKit/LayoutTests/fast/css/csstext-of-content-string.html
@@ -23,6 +23,6 @@ var style = document.getElementById('style');
shouldBeEqualToString("style.sheet.cssRules[0].cssText", "#A::after { content: \"A\"; }");
shouldBeEqualToString("style.sheet.cssRules[1].cssText", "#B::after { content: \"'B'\"; }");
shouldBeEqualToString("style.sheet.cssRules[2].cssText", "#C::after { content: \"'C\\8 '\"; }");
-shouldBeEqualToString("style.sheet.cssRules[3].cssText", "#D::after { content: \"'D'\" url(http://example.com/) \"EFG\"; }");
+shouldBeEqualToString("style.sheet.cssRules[3].cssText", "#D::after { content: \"'D'\" url(\"http://example.com/\") \"EFG\"; }");
</script>
</html>

Powered by Google App Engine
This is Rietveld 408576698