Fix password test to actually test password inputs.

This commit is contained in:
bzbarsky%mit.edu 2006-07-27 17:43:01 +00:00
Родитель 229643bc43
Коммит e15b9d5c26
1 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -15,25 +15,25 @@ div {border:blue 1px solid}
</style>
</head>
<p>intrinsic width:</p>
<p><input type="text"></p>
<p><input type="password"></p>
<p>intrinsic width long nonbreakable text</p>
<p><input type="text" value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"></p>
<p><input type="password" value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"></p>
<p>fixed width</p>
<p><input type="text" class="fixed"></p>
<p><input type="password" class="fixed"></p>
<p>intrinsic width inside table</p>
<table border><tr><td><input type="text"></td></tr></table>
<table border><tr><td><input type="password"></td></tr></table>
<p>intrinsic width inside tight table cell</p>
<table border><tr><td class="tight"><input type="text"></td></tr></table>
<table border><tr><td class="tight"><input type="password"></td></tr></table>
<p>fixed width inside table</p>
<table border><tr><td><input type="text" class="fixed"></td></tr></table>
<table border><tr><td><input type="password" class="fixed"></td></tr></table>
<p>fixed width inside smaller table cell</p>
<table border><tr><td class="tight"><input type="text" class="fixed"></td></tr></table>
<table border><tr><td class="tight"><input type="password" class="fixed"></td></tr></table>
<p>pctwidth inside auto table</p>
<table border><tr><td><input type="text" class="pct"></td></tr></table>
<table border><tr><td><input type="password" class="pct"></td></tr></table>
<p>pct width inside fixed width table cell</p>
<table border><tr><td class="tight"><input type="text" class="pct"></td></tr></table>
<table border><tr><td class="tight"><input type="password" class="pct"></td></tr></table>
<p>pct width inside pct width table cell</p>
<table border class="wide"><tr><td class="cellpct"><input type="text" class="pct"></td></tr></table>
<table border class="wide"><tr><td class="cellpct"><input type="password" class="pct"></td></tr></table>
<a href="input_text_strict.html">previous:&nbsp;&nbsp; input type:text</a>&nbsp;&nbsp;&nbsp;<a href="input_checkbox_strict.html">next:&nbsp;&nbsp; input type:checkbox</a>