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="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description">Test for keyboard operations of <input type=range></p> | 7 <p id="description">Test for keyboard operations of <input type=range></p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <script> | 9 <script> |
10 | 10 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 sendKey(input, 'Up'); | 259 sendKey(input, 'Up'); |
260 shouldBe('input.value', '"1"'); | 260 shouldBe('input.value', '"1"'); |
261 sendKey(input, 'Home'); | 261 sendKey(input, 'Home'); |
262 shouldBe('input.value', '"1"'); | 262 shouldBe('input.value', '"1"'); |
263 sendKey(input, 'PageUp'); | 263 sendKey(input, 'PageUp'); |
264 shouldBe('input.value', '"1"'); | 264 shouldBe('input.value', '"1"'); |
265 input.readOnly = false; | 265 input.readOnly = false; |
266 | 266 |
267 debug(''); | 267 debug(''); |
268 </script> | 268 </script> |
269 <script src="../../js/resources/js-test-post.js"></script> | |
270 </body> | 269 </body> |
271 </html> | 270 </html> |
OLD | NEW |