summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/9458-width-2b.html
blob: 6b03e8fc8114c2e6deba35484de0aea9511112d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<title>CSS 2.1 Test Suite: Test for 'width: &lt;length&gt;' on inline-block</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/" />
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" />
<meta name="flags" content="" />
<style type="text/css">
body > div { width: 10em; }
body > div > div { display: inline-block; background: green; color: white; width: 20em; }
body > div > div > div { width: 20em; }
</style>
</head>
<body>
<div>x<div><div>y</div></div>z</div>
</body>
</html>