Git init
[framework/web/webkit-efl.git] / LayoutTests / fast / replaced / width100percent-textfield.html
1 <html>
2 <head>
3 <style>
4 .test { width: 100%; }
5 </style>
6 </head>
7 <body>
8 These textfields should not overlap.
9 <table border="0" cellspacing="1" cellpadding="1" width="100%">
10 <tr>
11 <td nowrap><input type="text" name="b" value="New Mail" class="test"></td>
12 <td><input type="text" name="b" value="Reply" class="test"></td>
13 <td><input type="text" name="b" value="Reply All" class="test"></td>
14 <td width="100%">&nbsp;</td>
15 </tr>
16 </table>
17
18 <br>
19 <br>
20
21 <table border="0" cellspacing="1" cellpadding="1" width="100%">
22 <tr>
23 <td nowrap><input type="text" size="100" name="b" value="New Mail" class="test"></td>
24 <td><input type="text" size="100" name="b" value="Reply" class="test"></td>
25 <td><input type="text" size="100" name="b" value="Reply All" class="test"></td>
26 <td width="100%">&nbsp;</td>
27 </tr>
28 </table>
29
30 </body>
31 </html>