| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 <script> | 5 <script> |
| 6 description('Change multiple fields week input UI layout by value'); | 6 description('Change multiple fields week input UI layout by value'); |
| 7 var testInput = document.createElement('input'); | 7 var testInput = document.createElement('input'); |
| 8 testInput.type = 'month'; | 8 testInput.type = 'month'; |
| 9 testInput.max = '9999-12'; | 9 testInput.max = '9999-12'; |
| 10 document.body.appendChild(testInput); | 10 document.body.appendChild(testInput); |
| 11 var widthOfEmptyValue = testInput.offsetWidth; | 11 var widthOfEmptyValue = testInput.offsetWidth; |
| 12 | 12 |
| 13 testInput.value = '10000-12'; | 13 testInput.value = '10000-12'; |
| 14 var widthOfOverflowValue = testInput.offsetWidth; | 14 var widthOfOverflowValue = testInput.offsetWidth; |
| 15 shouldBeTrue('widthOfEmptyValue < widthOfOverflowValue'); | 15 shouldBeTrue('widthOfEmptyValue < widthOfOverflowValue'); |
| 16 | 16 |
| 17 testInput.value = '2012-10'; | 17 testInput.value = '2012-10'; |
| 18 var widthOfValidValue = testInput.offsetWidth; | 18 var widthOfValidValue = testInput.offsetWidth; |
| 19 shouldBe('widthOfEmptyValue', 'widthOfValidValue'); | 19 shouldBe('widthOfEmptyValue', 'widthOfValidValue'); |
| 20 | 20 |
| 21 testInput.remove(); | 21 testInput.remove(); |
| 22 </script> | 22 </script> |
| 23 <script src="../../js/resources/js-test-post.js"></script> | |
| 24 </body> | 23 </body> |
| 25 </html> | 24 </html> |
| OLD | NEW |