mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
307 B
HTML
19 lines
307 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Testcase for bug 776265 - checks min-height</title>
|
||
|
<style type="text/css">
|
||
|
textarea {
|
||
|
float: left;
|
||
|
height: 30px;
|
||
|
width: 50px;
|
||
|
min-height: 50px;
|
||
|
border: 1px solid #aaa;
|
||
|
padding: 4px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body><textarea></textarea>
|
||
|
</body>
|
||
|
</html>
|