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); |