Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / week-multiple-fields / week-multiple-fields-fallback-format.html
blob87495d303d35bd859537035aef96ec686a476b0c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <script src="../resources/common.js"></script>
6 </head>
7 <body>
8 <script>
9 description('Checks incomplete datetime formats are rejected.');
11 var input = document.createElement('input');
12 input.type = 'week';
13 document.body.appendChild(input);
15 function setDateTimeFormat(pattern) {
16 var value = input.value;
17 getElementByPseudoId(internals.youngestShadowRoot(input), '-webkit-datetime-edit').setAttribute('pattern', pattern);
18 input.value = ''; // Updates the element for new format
19 input.value = value;
22 input.value = '1999-W09';
24 debug('Valid format');
25 setDateTimeFormat("'Week'ww yyyy");
26 shouldBeEqualToString('getUserAgentShadowTextContent(input)', 'Week09 1999');
28 debug("Invalid format, fallback to yyyy-'W'ww");
29 setDateTimeFormat('ww');
30 shouldBeEqualToString('getUserAgentShadowTextContent(input)', '1999-W09');
31 setDateTimeFormat('yyyy');
32 shouldBeEqualToString('getUserAgentShadowTextContent(input)', '1999-W09');
34 </script>
35 </body>
36 </html>