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

Side by Side Diff: LayoutTests/fast/css/uri-token-parsing.html

Issue 23816008: Drop CSS cursor quirk for missing fallback cursor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added default pointer fallback to cursor rule in http test Created 7 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 unified diff | Download patch
OLDNEW
1 <head> 1 <head>
2 <style> 2 <style>
3 #a { content: url(c); } 3 #a { content: url(c); }
4 #b { content: url( d); } 4 #b { content: url( d); }
5 #c { content: url(e ); } 5 #c { content: url(e ); }
6 #d { content: url( f ); } 6 #d { content: url( f ); }
7 #f { content: url('c'); } 7 #f { content: url('c'); }
8 #g { content: url(' d'); } 8 #g { content: url(' d'); }
9 #h { content: url('e '); } 9 #h { content: url('e '); }
10 #i { content: url(' f '); } 10 #i { content: url(' f '); }
11 #j { content: url("url(g)"); } 11 #j { content: url("url(g)"); }
12 #l { content: url("c"); } 12 #l { content: url("c"); }
13 #m { content: url(" d"); } 13 #m { content: url(" d"); }
14 #n { content: url("e "); } 14 #n { content: url("e "); }
15 #o { content: url(" f "); } 15 #o { content: url(" f "); }
16 #p { content: url("url(g)"); } 16 #p { content: url("url(g)"); }
17 #q { cursor: url("url(q)"); } 17 #q { cursor: url("url(q)"), pointer; }
18 #r { list-style-image: url("url(r)"); } 18 #r { list-style-image: url("url(r)"); }
19 #s { background-image: url("url(s)"); } 19 #s { background-image: url("url(s)"); }
20 #t { -webkit-mask-image: url("url(t)"); } 20 #t { -webkit-mask-image: url("url(t)"); }
21 #u { -webkit-border-image: url("url(u)") 1 2 3 4 fill stretch round; } 21 #u { -webkit-border-image: url("url(u)") 1 2 3 4 fill stretch round; }
22 #v { -webkit-mask-box-image: url("url(v)") 1 2 3 4 fill stretch round; } 22 #v { -webkit-mask-box-image: url("url(v)") 1 2 3 4 fill stretch round; }
23 #w { content: url("w\0d\ 23 #w { content: url("w\0d\
24 w"); /* URL string contains twice newline */ } 24 w"); /* URL string contains twice newline */ }
25 #x { content: url(" x x x "); } /* URL string contains space and tab */ 25 #x { content: url(" x x x "); } /* URL string contains space and tab */
26 #y { content: url( y\20y\9y ); } /* URL string contains space and tab */ 26 #y { content: url( y\20y\9y ); } /* URL string contains space and tab */
27 </style> 27 </style>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #f { content: url(c); } 85 #f { content: url(c); }
86 #g { content: url(d); } 86 #g { content: url(d); }
87 #h { content: url(e); } 87 #h { content: url(e); }
88 #i { content: url(f); } 88 #i { content: url(f); }
89 #j { content: url('url(g)'); } 89 #j { content: url('url(g)'); }
90 #l { content: url(c); } 90 #l { content: url(c); }
91 #m { content: url(d); } 91 #m { content: url(d); }
92 #n { content: url(e); } 92 #n { content: url(e); }
93 #o { content: url(f); } 93 #o { content: url(f); }
94 #p { content: url('url(g)'); } 94 #p { content: url('url(g)'); }
95 #q { cursor: url('url(q)'); } 95 #q { cursor: url('url(q)'), pointer; }
96 #r { list-style-image: url('url(r)'); } 96 #r { list-style-image: url('url(r)'); }
97 #s { background-image: url('url(s)'); } 97 #s { background-image: url('url(s)'); }
98 #t { -webkit-mask: url('url(t)'); } 98 #t { -webkit-mask: url('url(t)'); }
99 #u { -webkit-border-image: url('url(u)') 1 2 3 4 fill stretch round; } 99 #u { -webkit-border-image: url('url(u)') 1 2 3 4 fill stretch round; }
100 #v { -webkit-mask-box-image: url('url(v)') 1 2 3 4 fill stretch round; } 100 #v { -webkit-mask-box-image: url('url(v)') 1 2 3 4 fill stretch round; }
101 #w { content: url(ww); } 101 #w { content: url(ww); }
102 #x { content: url(x%20xx); } 102 #x { content: url(x%20xx); }
103 #y { content: url(y%20yy); } 103 #y { content: url(y%20yy); }
104 </pre> 104 </pre>
105 105
106 <script> 106 <script>
107 107
108 </script> 108 </script>
109 </body> 109 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/invalid-cursor-property-crash.html ('k') | LayoutTests/fast/css/uri-token-parsing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698