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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/url-with-multi-byte-unicode-escape.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/url-with-multi-byte-unicode-escape.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/url-with-multi-byte-unicode-escape.html b/third_party/WebKit/LayoutTests/fast/css/url-with-multi-byte-unicode-escape.html
index 00d8de20376e2d743937bf40de0069da8e2be322..e9a9d1bd5e8629f47182b2c155b4d295e62acbc9 100644
--- a/third_party/WebKit/LayoutTests/fast/css/url-with-multi-byte-unicode-escape.html
+++ b/third_party/WebKit/LayoutTests/fast/css/url-with-multi-byte-unicode-escape.html
@@ -13,7 +13,7 @@
<script>
description('Test parsing a CSS URI containing a multi-byte Unicode escape sequence.');
shouldBe('document.styleSheets[0].cssRules.length', '2');
- shouldBeEqualToString('document.styleSheets[0].cssRules[0].style.getPropertyValue("background-image")', 'url(data:' + decodeURIComponent('%C4%80') + ')');
+ shouldBeEqualToString('document.styleSheets[0].cssRules[0].style.getPropertyValue("background-image")', 'url("data:' + decodeURIComponent('%C4%80') + '")');
shouldBeEqualToString('document.styleSheets[0].cssRules[1].style.getPropertyValue("background-color")', 'green');
shouldBeEqualToString('window.getComputedStyle(document.getElementById("test")).getPropertyValue("background-color")', 'rgb(0, 128, 0)');
</script>

Powered by Google App Engine
This is Rietveld 408576698