bzbarsky%mit.edu 3b99bbff21 Add more regression tests.
git-svn-id: svn://10.0.0.236/trunk@199456 18797224-902f-48f8-a5cc-f745e15eee43
2006-06-07 21:27:42 +00:00

25 lines
571 B
HTML

<HTML>
<had>
<style>
input, select, label {
min-width: 100px;
max-width: 200px;
}
</style>
<BODY>
<form>
<div style="width:100px;background-color:#8888FF">100 pixels width</div>
<div style="width:200px;background-color:#88FF88">200 pixels width</div>
<div style="min-width: 100px;max-width: 200px;background-color:#FF8888">Div with min/max</div>
<input type=text><br>
<input type=text size=50><br>
<select>
<option>One
</select><br>
<select size=5>
<option>One
</select><br>
<label style="background-color:#88FF88">Label</label>
</BODY>
</HTML>