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

Unified Diff: LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html

Issue 1355263002: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@urlThing161644
Patch Set: 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: LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html
diff --git a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html
index dc35cbcd66fefffaa5e290b20ff4769d3f42a975..3d759952993b777b1abc7d6b1f5709858f8948be 100644
--- a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html
+++ b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html
@@ -19,7 +19,7 @@ e = document.getElementById('test');
computedStyle = window.getComputedStyle(e, null);
e.style.listStyle = "circle outside url(dummy://test.png)";
-shouldBe("computedStyle.getPropertyValue('list-style')", "'circle outside url(dummy://test.png)'");
+shouldBe("computedStyle.getPropertyValue('list-style')", "'circle outside url(\"dummy://test.png\")'");
e.style.listStyle = ""
e.style.listStyle = "a b c";
@@ -35,7 +35,7 @@ e.style.listStyle = "";
e.style.listStyleType = "circle";
e.style.listStylePosition = "outside";
e.style.listStyleImage = "url(dummy://test.png)";
-shouldBe("computedStyle.getPropertyValue('list-style')", "'circle outside url(dummy://test.png)'");
+shouldBe("computedStyle.getPropertyValue('list-style')", "'circle outside url(\"dummy://test.png\")'");
document.body.removeChild(testContainer);

Powered by Google App Engine
This is Rietveld 408576698