Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / file / file-input-direction.html
blobbc302c9ba7e3fe9c9efa691e7bc9a09e5af9dcd4
1 <style>
2 body { overflow: hidden; }
3 td {
4 border: 1px solid black;
6 </style>
7 <table>
8 <tr>
9 <th></th>
10 <th></th>
11 <th>text-align:left</th>
12 <th>text-align:center</th>
13 <th>text-align:right</th>
14 </tr>
15 <tr>
16 <th></th>
17 <td><input type="file"></td>
18 <td><input type="file" style="text-align:left"></td>
19 <td><input type="file" style="text-align:center"></td>
20 <td><input type="file" style="text-align:right"></td>
21 </tr>
22 <tr>
23 <th>direction:ltr</th>
24 <td><input type="file" style="direction:ltr"></td>
25 <td><input type="file" style="direction:ltr; text-align:left"></td>
26 <td><input type="file" style="direction:ltr; text-align:center"></td>
27 <td><input type="file" style="direction:ltr; text-align:right"></td>
28 </tr>
29 <tr>
30 <th>direction:rtl</th>
31 <td><input type="file" style="direction:rtl"></td>
32 <td><input type="file" style="direction:rtl; text-align:left"></td>
33 <td><input type="file" style="direction:rtl; text-align:center"></td>
34 <td><input type="file" style="direction:rtl; text-align:right"></td>
35 </tr>
36 </table>