OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 window.enablePixelTesting = true; | 5 window.enablePixelTesting = true; |
6 </script> | 6 </script> |
7 <script src="../../../resources/js-test.js"></script> | 7 <script src="../../../resources/js-test.js"></script> |
8 <script src="../../forms/resources/picker-common.js"></script> | 8 <script src="../../forms/resources/picker-common.js"></script> |
9 <script src="resources/calendar-picker-common.js"></script> | 9 <script src="resources/calendar-picker-common.js"></script> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <!-- Check if step attribute is reflected in the appearance of the calendar pick
er. --> | 12 <!-- Check if step attribute is reflected in the appearance of the calendar pick
er. --> |
13 <input type="date" id="date" value="2010-12-31" max="2010-12-31" step="3"> | 13 <input type="date" id="date" min="2008-11-28" value="2010-12-31" max="2010-12-31
" step="3"> |
14 | 14 |
15 <p id="description" style="opacity: 0"></p> | 15 <p id="description" style="opacity: 0"></p> |
16 <div id="console" style="opacity: 0"></div> | 16 <div id="console" style="opacity: 0"></div> |
17 | 17 |
18 <script> | 18 <script> |
19 openPicker(document.getElementById('date'), finishJSTest); | 19 openPicker(document.getElementById('date'), finishJSTest); |
20 </script> | 20 </script> |
21 </body> | 21 </body> |
22 </html> | 22 </html> |
OLD | NEW |