Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / week / week-appearance-basic.html
blobe9281888420d31b24f8e631cebee94b487f14de2
1 <html>
2 <body>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsTextWithPixelResults();
6 </script>
7 <ul>
8 <li>basic <input type="week"> <input type="week" value="1982-W25"></li>
9 <li>focus <input type="week"> <input type="week" value="1982-W25"></li>
10 <li>disabled <input type="week" disabled> <input type="week" value="1982-W25" disabled></li>
11 <li>readonly <input type="week" readonly> <input type="week" value="1982-W25" readonly></li>
12 <li>RTL <input type="week" dir="rtl"> <input type="week" value="1982-W25" dir="rtl"></li>
13 <li>With max <input type="week" max="9999-W52"> <input type="week" value="1982-W25" max="9999-W52"></li>
14 </ul>
16 <ul>
17 <li>text-align: <input type="week" value="1982-W25" style="text-align: left;"></li>
18 <li>text-transform: <input type="week" value="1982-W25" style="text-transform: lowercase;"></li>
19 <li>background, color: <input type="week" value="1982-W25" style="border: 0px; background: green; color: yellow;"></li>
20 <li>font-size, font-weight: <input type="week" value="1982-W25" style="font-size: 20pt; font-weight: bold;"></li>
21 <li>font-size with fixed input width: <input type="week" value="1982-W25" style="font-size: 20pt; width: 14em;"></li>
22 <li>Fixed input height: <input type="week" value="1982-W25" style="height: 4em;"></li>
23 <li>-webkit-appearance:none: <input type="week" value="1982-W25" style="-webkit-appearance: none;"></li>
24 <li>padding: <input type="week" value="1982-W25" style="padding: 20px"></li>
25 </ul>
26 <script>document.querySelectorAll('input')[2].focus();</script>
27 </body>
28 </html>