WebKit CSS resize bug
by fgnass
HTML
<div id="rect">
This box is 100x100 pixels by default.
It should be possible to resize it to 50x50.
Works in Firefox, fails in WebKit (7534.51.22, r100987).
</div>
CSS
#rect {
resize: both;
width: 100px;
height: 100px;
min-width: 50px;
min-height: 50px;
max-width: 200px;
max-height: 200px;
overflow: auto;
background: silver;
}