Mozilla/mozilla/layout/reftests/bugs/9458-width-2a.html
dbaron%dbaron.org 3052400d5e Implement CSS display types inline-block and inline-table. b=9458, 18217 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@219045 18797224-902f-48f8-a5cc-f745e15eee43
2007-01-27 18:36:57 +00:00

15 lines
328 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Testcase for inline-block (bug 9458)</title>
<style type="text/css">
body > div { width: 10em; }
body > div > div { display: inline-block; background: green; color: white; }
body > div > div > div { width: 20em; }
</style>
</head>
<body>
<div>x<div><div>y</div></div>z</div>
</body>
</html>