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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/uri-token-parsing.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: CSSPrimitiveValue and CSSSVGDocumentValue customCSSText changes 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/uri-token-parsing.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing.html b/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing.html
index 16397fd19464554e542a882d60ebaae16edc8ef5..81c72174a5de30e6f71d18a7f62ea04ec6138d7e 100644
--- a/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing.html
+++ b/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing.html
@@ -79,29 +79,29 @@ function runTest()
<p>Expected result:</p>
<pre id="expected">
-#a { content: url(c); }
-#b { content: url(d); }
-#c { content: url(e); }
-#d { content: url(f); }
-#f { content: url(c); }
-#g { content: url(' d'); }
-#h { content: url('e '); }
-#i { content: url(' f '); }
-#j { content: url('url(g)'); }
-#l { content: url(c); }
-#m { content: url(' d'); }
-#n { content: url('e '); }
-#o { content: url(' f '); }
-#p { content: url('url(g)'); }
-#q { cursor: url('url(q)'), pointer; }
-#r { list-style-image: url('url(r)'); }
-#s { background-image: url('url(s)'); }
-#t { -webkit-mask-image: url('url(t)'); }
-#u { -webkit-border-image: url('url(u)') 1 2 3 4 fill stretch round; }
-#v { -webkit-mask-box-image-source: url('url(v)'); }
-#w { content: url('w\\d w'); }
-#x { content: url(' x x\\9 x '); }
-#y { content: url('y y\\9 y'); }
+#a { content: url("c"); }
+#b { content: url("d"); }
+#c { content: url("e"); }
+#d { content: url("f"); }
+#f { content: url("c"); }
+#g { content: url(" d"); }
+#h { content: url("e "); }
+#i { content: url(" f "); }
+#j { content: url("url(g)"); }
+#l { content: url("c"); }
+#m { content: url(" d"); }
+#n { content: url("e "); }
+#o { content: url(" f "); }
+#p { content: url("url(g)"); }
+#q { cursor: url("url(q)"), pointer; }
+#r { list-style-image: url("url(r)"); }
+#s { background-image: url("url(s)"); }
+#t { -webkit-mask-image: url("url(t)"); }
+#u { -webkit-border-image: url("url(u)") 1 2 3 4 fill stretch round; }
+#v { -webkit-mask-box-image-source: url("url(v)"); }
+#w { content: url("w\d w"); }
+#x { content: url(" x x\9 x "); }
+#y { content: url("y y\9 y"); }
</pre>
<script>

Powered by Google App Engine
This is Rietveld 408576698