Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / sub-pixel / inline-block-should-not-wrap-expected.html
blob42ea6ad05268fb527c4cf82ffce23c003812330c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 font-size: 0.8em;
9 ul {
10 display: inline;
11 margin: 0;
12 padding: 0;
13 list-style: none;
16 li {
17 display: inline-block;
18 border-left: 1px solid silver;
19 padding-left: 0.5em;
20 white-space: nowrap;
23 </style>
24 </head>
26 <body>
27 <ul>
28 <li><a href="#">Birds of North America</a></li>
29 <li><a href="#">Old French loanwords</a></li>
30 </ul>
31 <p>
32 The two links above should not wrap.
33 </p>
34 </body>
35 </html>