| 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 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <p id="description"></p> | 7 <p id="description"></p> |
| 8 <div id="console"></div> | 8 <div id="console"></div> |
| 9 <script> | 9 <script> |
| 10 description('This test aims to check for rangeOverflow flag with input fields'); | 10 description('This test aims to check for rangeOverflow flag with input fields'); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 testFailed(resultText); | 24 testFailed(resultText); |
| 25 else | 25 else |
| 26 testPassed(resultText); | 26 testPassed(resultText); |
| 27 } | 27 } |
| 28 | 28 |
| 29 // ---------------------------------------------------------------- | 29 // ---------------------------------------------------------------- |
| 30 debug('Type=text'); | 30 debug('Type=text'); |
| 31 input.type = 'text'; // No overflow for type=text. | 31 input.type = 'text'; // No overflow for type=text. |
| 32 checkNotOverflow('101', '100'); | 32 checkNotOverflow('101', '100'); |
| 33 </script> | 33 </script> |
| 34 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 35 </body> | 34 </body> |
| 36 </html> | 35 </html> |
| OLD | NEW |