addedmore tests

This commit is contained in:
rods%netscape.com 1999-10-26 14:16:15 +00:00
parent b4402bf832
commit 4938e06ae1
3 changed files with 11 additions and 0 deletions

View File

@ -24,6 +24,7 @@
<ul>
<li><a href="textarea_tests.html">Tests: Cols, Rows and Style (height, width, padding, border)</a></li>
<li><a href="textarea_sizes.html">Tests: Font sizes and family</a></li>
<li><a href="textarea_wrap_tests.html">Tests: wrap property</a></li>
</ul>
<li>
<b>Input Text</b></li>

View File

@ -43,6 +43,11 @@ padding: 5px;height:50px;<br>
<input type=text style="padding: 5px;height:50px;" value="Hello"><br><br>
5px solid blue;padding: 5px;height:50px;<br>
<input type=text style="border:5px solid blue;padding: 5px;height:50px;" value="Hello"><br><br>
<hr>
Textarea in a red div tag (shows top and bottom margin)<br>
<div style="background-color: red">
<input type=text value="This is some text.">
</div>
</form>
</body>
</html>

View File

@ -56,6 +56,11 @@ padding: 5px;<br>
<textarea style="padding: 5px;"></textarea><br><br>
5px solid blue;padding: 5px;<br>
<textarea style="border:5px solid blue;padding: 5px;"></textarea><br><br>
<hr>
Textarea in a red div tag (shows top and bottom margin)<br>
<div style="background-color: red">
<textarea> This is some text.</textarea>
</div>
</form>
</body>
</html>