Implement min-width and max-width for non-block flows.

+ Add simple reftests.
+ Add reftests for float min-width and max-width.
This commit is contained in:
S Pradeep Kumar 2014-03-07 19:08:31 +09:00
parent e98c839ab0
commit 9d510a7112
12 changed files with 292 additions and 77 deletions

View file

@ -0,0 +1,22 @@
<html>
<head>
<style>
#first {
width: 100px;
height: 100px;
border: solid 1px;
}
#block {
height: 50px;
width: 40px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="block">
</div>
</div>
</body>
</html>