ojan@chromium.org | b8f6008 | 2013-01-15 22:15:35 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
2 | <style> | ||||
3 | li { | ||||
4 | float: left; | ||||
5 | border: 5px solid pink; | ||||
6 | } | ||||
7 | div { | ||||
8 | background-color: salmon; | ||||
9 | width: 20px; | ||||
10 | height: 20px; | ||||
11 | } | ||||
12 | </style> | ||||
13 | The list items should have no content. | ||||
14 | |||||
15 | <ul style="border:2px solid blue;"> | ||||
16 | <li data-expected-width=10></li> | ||||
17 | <li data-expected-width=10></li> | ||||
18 | </ul> | ||||
19 | |||||
20 | <script src="../../resources/check-layout.js"></script> | ||||
21 | <script> | ||||
22 | checkLayout('ul'); | ||||
23 | </script> |