bernd.mielke%snafu.de 2eed8a9cc4 formcontrol layout regression testcases
git-svn-id: svn://10.0.0.236/trunk@116267 18797224-902f-48f8-a5cc-f745e15eee43
2002-03-09 15:07:13 +00:00

58 lines
836 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<html lang="en">
<head>
<title>test case</title>
<style type="text/css" media="screen">
<!--
body {
color: #0f0;
background-color: #000;
margin: 0;
padding: 1em;
}
input[type="text"], select {
color: #0f0;
background-color: #000;
border-color: #06f;
border-width: 1px;
font-size: 2em;
line-height: 2em;
height: 5em;
width: 60%;
}
.test {
font-family: sans-serif;
}
-->
</style>
</head>
<body>
<form>
<table>
<tr>
<td>Test:</td>
<td><input type="text" class="test" value="text and Number 123"></td>
</tr>
<tr>
<td>Test:</td>
<td><select class="test">
<option>text and Number 123</option>
<option>text and Number 123</option>
<option>text and Number 123</option>
</select></td>
</tr>
</table>
</form>
</body>
</html>