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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/uri-token-parsing-expected.txt

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-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing-expected.txt b/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing-expected.txt
index 10650fdd56f023a51005bb91b2ff8ecbc3f35af8..099cdbd85cc17324f81258350b042f38d54898b0 100644
--- a/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/uri-token-parsing-expected.txt
@@ -4,52 +4,52 @@ SUCCESS
Rules from the stylesheet:
-#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"); }
Expected result:
-#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"); }

Powered by Google App Engine
This is Rietveld 408576698