mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-11 16:32:59 +00:00
updated the tests
This commit is contained in:
parent
f51f8d8e2d
commit
306d555281
@ -2,36 +2,68 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="GENERATOR" content="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
|
||||
<meta name="GENERATOR" content="Mozilla/4.61 [en] (WinNT; U) [Netscape]">
|
||||
<title>Form Control Tests</title>
|
||||
</head>
|
||||
<body bgcolor="#c0d0f0">
|
||||
<h2>Form Control Tests</h2>
|
||||
<body bgcolor="#C0D0F0">
|
||||
|
||||
<h2>
|
||||
Form Control Tests</h2>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<b>Selects</b></li>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="select_js.html">Add & Remove options in a select as a combobox</a></li>
|
||||
<a href="select_js.html">Add & Remove options in a select as a combobox</a></li>
|
||||
|
||||
<li><a href="select_js.html">Add & Remove options in a select as a listbox</a></li>
|
||||
<li>
|
||||
<a href="select_js.html">Add & Remove options in a select as a listbox</a></li>
|
||||
</ul>
|
||||
|
||||
<li>
|
||||
<b>Text Areas</b></li>
|
||||
|
||||
<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>
|
||||
<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.html">Tests: wrap property</a></li>
|
||||
</ul>
|
||||
|
||||
<li>
|
||||
<b>Input Text</b></li>
|
||||
|
||||
<ul>
|
||||
<li><a href="inputtext_tests.html">Tests: Cols, Rows and Style (height, width, padding, border)</a></li>
|
||||
<li><a href="inputtext_sizes.html">Tests: Font sizes and family</a></li>
|
||||
<li>
|
||||
<a href="inputtext_tests.html">Tests: Cols, Rows and Style (height, width,
|
||||
padding, border)</a></li>
|
||||
|
||||
<li>
|
||||
<a href="inputtext_sizes.html">Tests: Font sizes and family</a></li>
|
||||
</ul>
|
||||
|
||||
<li>
|
||||
<b>Input Button</b></li>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="button_css_sizing.html">Tests: CSS sizing of Input and HTML buttons</a></li>
|
||||
</ul>
|
||||
|
||||
<li>
|
||||
<b>Optgroups</b></li>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="optgroup_test1.html">Tests: Optgroups and option element sizing
|
||||
combinations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
|
@ -1,9 +1,22 @@
|
||||
<html>
|
||||
<body bgcolor="#C0D0F0">
|
||||
<form>
|
||||
<textarea wrap="soft" cols=30 rows=3>This is some text.</textarea><br>
|
||||
<textarea wrap="hard" cols=30 rows=3>This is some text.</textarea><br>
|
||||
<textarea wrap="off" cols=30 rows=3>This is some text.</textarea><br>
|
||||
<b>Soft</b><br>
|
||||
<textarea wrap="soft" cols=30 rows=3>This is some text.</textarea>
|
||||
<br>
|
||||
<br>
|
||||
<b>Hard</b><br>
|
||||
<textarea wrap="hard" cols=30 rows=3>This is some text.</textarea>
|
||||
<br>
|
||||
<br>
|
||||
<b>Off</b><br>
|
||||
<textarea wrap="off" cols=30 rows=3>This is some text.</textarea>
|
||||
<br>
|
||||
<br>
|
||||
<b>No wrap property</b><br>
|
||||
<textarea cols=30 rows=3>This is some text.</textarea>
|
||||
<br>
|
||||
<br>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user