OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 .test { width: 100%; } | 4 .test { width: 100%; } |
5 </style> | 5 </style> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <script> | |
9 if (window.testRunner) | |
10 testRunner.display(); | |
ojan
2014/03/27 20:31:49
Does removing this not change behavior? Didn't thi
enne (OOO)
2014/03/27 20:51:05
Yeah, I don't think it's useful either. It does c
| |
11 </script> | |
12 | |
13 The textareas below should not overlap. | 8 The textareas below should not overlap. |
14 <table border="0" cellspacing="1" cellpadding="1" width="100%"> | 9 <table border="0" cellspacing="1" cellpadding="1" width="100%"> |
15 <tr> | 10 <tr> |
16 <td nowrap><textarea class="test">one</textarea></td> | 11 <td nowrap><textarea class="test">one</textarea></td> |
17 <td><textarea class="test">two</textarea></td> | 12 <td><textarea class="test">two</textarea></td> |
18 <td><textarea class="test">three</textarea></td> | 13 <td><textarea class="test">three</textarea></td> |
19 <td width="100%"> </td> | 14 <td width="100%"> </td> |
20 </tr> | 15 </tr> |
21 </table> | 16 </table> |
22 | 17 |
23 <br> | 18 <br> |
24 <br> | 19 <br> |
25 | 20 |
26 <table border="0" cellspacing="1" cellpadding="1" width="100%"> | 21 <table border="0" cellspacing="1" cellpadding="1" width="100%"> |
27 <tr> | 22 <tr> |
28 <td nowrap><textarea class="test" cols="30">one two three</textarea></td> | 23 <td nowrap><textarea class="test" cols="30">one two three</textarea></td> |
29 <td><textarea class="test" cols="30">two</textarea></td> | 24 <td><textarea class="test" cols="30">two</textarea></td> |
30 <td><textarea class="test" cols="30">three</textarea></td> | 25 <td><textarea class="test" cols="30">three</textarea></td> |
31 <td width="100%"> </td> | 26 <td width="100%"> </td> |
32 </tr> | 27 </tr> |
33 </table> | 28 </table> |
34 | 29 |
35 </body> | 30 </body> |
36 </html> | 31 </html> |
OLD | NEW |