Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / input-in-table-cell-no-value-expected.html
blob79a50a1b8e3070eedf78abbc118ec9002b86034f
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 td
7 position: relative;
8 height: 50px;
11 input
13 position: absolute;
14 width: 100px;
15 top: 2px;
16 bottom: 2px;
17 min-height: 10px;
19 </style>
20 </head>
21 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=89209">89209</a>: REGRESSION(r112113): absolutely positioned INPUT boxes with a table cell containing block have a 0px height</p>
22 <p>This test passes if you can see some text inside the &lt;input&gt; boxes</p>
23 <table>
24 <tr>
25 <td>Single line text input</td>
26 <td><input type="number" value="1"></input></td>
27 </tr>
28 <tr>
29 <td>Text input <br/> spanning <br/> multiple lines.</td>
30 <td><input type="date" value="2000-01-01"></input></td>
31 </tr>
32 </table>
33 </html>