YUI3 min-height bug
by jessekinsman
HTML
<div id="min-height">MIN Height Test</div>
CSS
#min-height {
width: 300px;
color: white;
background: black;
height: 200px;
}
JavaScript
YUI().use("node", function(Y) {
Y.one("#min-height").setStyles({ "width": "200px", "minHeight": "600px"});
});