| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>required and basic valueMissing</title> | 4 <title>required and basic valueMissing</title> |
| 5 <script src="../../fast/js/resources/js-test-pre.js"></script> | 5 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <p id="description"></p> | 8 <p id="description"></p> |
| 9 <div id="console"></div> | 9 <div id="console"></div> |
| 10 <input id="input" name="victim" required/> | 10 <input id="input" name="victim" required/> |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 shouldBeFalse('valueMissingFor("select-without-placeholder-size2")'); | 79 shouldBeFalse('valueMissingFor("select-without-placeholder-size2")'); |
| 80 shouldBeTrue('valueMissingFor("select-none-selected-multiple")'); | 80 shouldBeTrue('valueMissingFor("select-none-selected-multiple")'); |
| 81 shouldBeFalse('valueMissingFor("select-fake-placeholder-selected-multiple")'
); | 81 shouldBeFalse('valueMissingFor("select-fake-placeholder-selected-multiple")'
); |
| 82 shouldBeFalse('valueMissingFor("select-without-fake-placeholder-multiple")')
; | 82 shouldBeFalse('valueMissingFor("select-without-fake-placeholder-multiple")')
; |
| 83 shouldBeTrue('valueMissingFor("select-none-selected-size2-multiple")'); | 83 shouldBeTrue('valueMissingFor("select-none-selected-size2-multiple")'); |
| 84 shouldBeFalse('valueMissingFor("select-fake-placeholder-selected-size2-multi
ple")'); | 84 shouldBeFalse('valueMissingFor("select-fake-placeholder-selected-size2-multi
ple")'); |
| 85 shouldBeFalse('valueMissingFor("select-without-fake-placeholder-size2-multip
le")'); | 85 shouldBeFalse('valueMissingFor("select-without-fake-placeholder-size2-multip
le")'); |
| 86 shouldBeFalse('valueMissingFor("select-optgroup")'); | 86 shouldBeFalse('valueMissingFor("select-optgroup")'); |
| 87 shouldBeTrue('valueMissingFor("select-disabled-option")'); | 87 shouldBeTrue('valueMissingFor("select-disabled-option")'); |
| 88 </script> | 88 </script> |
| 89 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 90 </body> | 89 </body> |
| 91 </html> | 90 </html> |
| OLD | NEW |