tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / 007.html
1 <html>
2 <style type="text/css">
3 #header ul {
4         list-style: none;
5 }
6 #header li {
7         padding: 0 0 0 9px;
8 }
9 #header a {
10         float: left;
11         width: .1em;
12 }
13 #header > ul a {
14         width: auto; /* doesn't work */
15 }
16 </style>
17
18   <div id="header">
19     <ul>
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>
22     </ul>
23   </div>
24
25
26 </html>