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

Side by Side Diff: LayoutTests/fast/css/007.html

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <style type="text/css"> 2 <style type="text/css">
3 #header ul { 3 #header ul {
4 list-style: none; 4 list-style: none;
5 } 5 }
6 #header li { 6 #header li {
7 padding: 0 0 0 9px; 7 padding: 0 0 0 9px;
8 } 8 }
9 #header a { 9 #header a {
10 float: left; 10 float: left;
11 width: .1em; 11 width: .1em;
12 } 12 }
13 #header > ul a { 13 #header > ul a {
14 width: auto; /* doesn't work */ 14 width: auto; /* doesn't work */
15 } 15 }
16 </style> 16 </style>
17 17
18 <div id="header"> 18 <div id="header">
19 <ul> 19 <ul>
20 <li> <a>This is link one</a></li> 20 <li> <a>This is link one</a></li>
21 <li> <a>This is link two and it shouldn't overlap link one</a></li> 21 <li> <a>This is link two and it shouldn't overlap link one</a></li>
22 </ul> 22 </ul>
23 </div> 23 </div>
24 24
25 25
26 </html> 26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698