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

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

Issue 1306283006: BackgroundImage incorrectly returns empty url() when created on-the-fly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/uri-token-parsing-expected.txt
diff --git a/LayoutTests/fast/css/uri-token-parsing-expected.txt b/LayoutTests/fast/css/uri-token-parsing-expected.txt
index 62de96dbaf2c0621654a0a30722bf791a24c1500..10650fdd56f023a51005bb91b2ff8ecbc3f35af8 100644
--- a/LayoutTests/fast/css/uri-token-parsing-expected.txt
+++ b/LayoutTests/fast/css/uri-token-parsing-expected.txt
@@ -9,14 +9,14 @@ Rules from the stylesheet:
#c { content: url(e); }
#d { content: url(f); }
#f { content: url(c); }
-#g { content: url(d); }
-#h { content: url(e); }
-#i { content: url(f); }
+#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); }
+#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)'); }
@@ -24,9 +24,9 @@ Rules from the stylesheet:
#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(ww); }
-#x { content: url(x%20xx); }
-#y { content: url(y%20yy); }
+#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); }
@@ -34,14 +34,14 @@ Expected result:
#c { content: url(e); }
#d { content: url(f); }
#f { content: url(c); }
-#g { content: url(d); }
-#h { content: url(e); }
-#i { content: url(f); }
+#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); }
+#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)'); }
@@ -49,7 +49,7 @@ Expected result:
#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(ww); }
-#x { content: url(x%20xx); }
-#y { content: url(y%20yy); }
+#w { content: url('w\\d w'); }
+#x { content: url(' x x\\9 x '); }
+#y { content: url('y y\\9 y'); }
« no previous file with comments | « LayoutTests/fast/css/uri-token-parsing.html ('k') | LayoutTests/fast/css/url-with-multi-byte-unicode-escape.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698