OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
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 <script> | 7 <script> |
8 description('Test for validationMessage IDL attribute for <input type=range>'
); | 8 description('Test for validationMessage IDL attribute for <input type=range>'
); |
9 var parent = document.createElement('div'); | 9 var parent = document.createElement('div'); |
10 document.body.appendChild(parent); | 10 document.body.appendChild(parent); |
(...skipping 26 matching lines...) Expand all Loading... |
37 debug('Range underflow') | 37 debug('Range underflow') |
38 shouldBeEqualToString('testIt("10", "50", "100")', ''); | 38 shouldBeEqualToString('testIt("10", "50", "100")', ''); |
39 | 39 |
40 debug('Step mismatch') | 40 debug('Step mismatch') |
41 shouldBeEqualToString('testIt("55", "0", "100", "10")', ''); | 41 shouldBeEqualToString('testIt("55", "0", "100", "10")', ''); |
42 | 42 |
43 </script> | 43 </script> |
44 <script src="../../../fast/js/resources/js-test-post.js"></script> | 44 <script src="../../../fast/js/resources/js-test-post.js"></script> |
45 </body> | 45 </body> |
46 </html> | 46 </html> |
OLD | NEW |