Mozilla/mozilla/layout/reftests/bugs/412607-1-ref.html
dholbert%cs.stanford.edu 233fffbd92 Bug 412607: Fix wrapping issue by clearing trimmable width before trying CanPlaceFrame. r+sr=roc, a=blocking1.9
git-svn-id: svn://10.0.0.236/trunk@245181 18797224-902f-48f8-a5cc-f745e15eee43
2008-02-07 23:00:38 +00:00

28 lines
375 B
HTML

<html>
<head>
<style>
div.wrapper {
width: 80px;
height: 30px;
}
div.a, div.b {
height: 20px;
display: inline-block;
}
div.a {
width: 20px;
background: blue;
}
div.b {
width: 80px;
background: green;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="a"></div> <div class="b"></div>
</div>
</body>
</html>