blob: ef16744f7a3fd230fe4e49d9189ba20dfab2856a [file] [log] [blame]
ojan@chromium.orgb8f60082013-01-15 22:15:35 +00001<!DOCTYPE html>
2<style>
3li {
4 float: left;
5 border: 5px solid pink;
6}
7div {
8 background-color: salmon;
9 width: 20px;
10 height: 20px;
11}
12</style>
13The 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>
22checkLayout('ul');
23</script>