Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / week-multiple-fields / week-multiple-fields-change-layout-by-value.html
blobf9715d4371ac93f51e60b3d84456c82287980a33
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../../resources/js-test.js"></script>
5 <script>
6 description('Change multiple fields week input UI layout by value');
7 var testInput = document.createElement('input');
8 testInput.type = 'week';
9 testInput.max = '9999-W52';
10 document.body.appendChild(testInput);
11 var widthOfEmptyValue = testInput.offsetWidth;
13 testInput.value = '10000-W01';
14 var widthOfOverflowValue = testInput.offsetWidth;
15 shouldBeTrue('widthOfEmptyValue < widthOfOverflowValue');
17 testInput.value = '2012-W10';
18 var widthOfValidValue = testInput.offsetWidth;
19 shouldBe('widthOfEmptyValue', 'widthOfValidValue');
21 testInput.remove();
22 </script>
23 </body>
24 </html>