| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Case insensitiveness of accesskey attribute</title> | 4 <title>Case insensitiveness of accesskey attribute</title> |
| 5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
| 6 </head> | 6 </head> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <script> | 9 <script> |
| 10 description('Access key should work case-insensitively. To test this manually, p
ress <alt>+a, <alt>+<shift>+b and <alt>+<shift>+c
keys in this order (on Mac OS X, press <ctrl>+<opt> instead of <a
lt>).'); | 10 description('Access key should work case-insensitively. To test this manually, p
ress <alt>+a, <alt>+<shift>+b and <alt>+<shift>+c
keys in this order (on Mac OS X, press <ctrl>+<opt> instead of <a
lt>).'); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 finishJSTest(); | 50 finishJSTest(); |
| 51 }; | 51 }; |
| 52 pressKey('C'); | 52 pressKey('C'); |
| 53 }; | 53 }; |
| 54 pressKey('B'); | 54 pressKey('B'); |
| 55 }; | 55 }; |
| 56 document.body.appendChild(input); | 56 document.body.appendChild(input); |
| 57 pressKey('a'); | 57 pressKey('a'); |
| 58 }); | 58 }); |
| 59 </script> | 59 </script> |
| 60 <script src="../js/resources/js-test-post.js"></script> | |
| 61 </body> | 60 </body> |
| 62 </html> | 61 </html> |
| OLD | NEW |