Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../../resources/js-test.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <input id='number' type=number> | |
| 8 <script> | |
| 9 description("Test selectionStart() method support in input type number."); | |
| 10 | |
| 11 debug('Checking input type number support for selectionStart:'); | |
| 12 shouldThrow('document.getElementById("number").selectionStart = 0'); | |
| 13 | |
| 14 debug('Checking input type number support for selectionEnd:'); | |
| 15 shouldThrow('document.getElementById("number").selectionEnd'); | |
| 16 | |
| 17 </script> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |