gecko/layout/reftests/bugs/776265-1c.html
Charly Molter db958503bc Bug 776265 - changing the way ComputeHeightValue works to make it work just
like ComputeWidthValue already does. this fixes {min,max}-height + adding
  reftests for {min,max}-{height,width} r=mats
2012-08-08 17:58:26 +02:00

22 lines
430 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Testcase for bug 776265 - checks min-width with box-sizing: border-box</title>
<style type="text/css">
textarea {
float: left;
width: 40px;
height: 50px;
min-width: 50px;
border: 1px solid #aaa;
padding: 4px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
</style>
</head>
<body><textarea></textarea>
</body>
</html>