| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Mutating accesskey attribute</title> | 4 <title>Mutating 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 after accesskey attribute is mutated. To tes
t this manually, press <alt>+a, <alt>+b and <alt>+c keys in th
is order (on Mac OS X, press <Ctrl>+<Opt> instead of <alt>).')
; | 10 description('Access key should work after accesskey attribute is mutated. To tes
t this manually, press <alt>+a, <alt>+b and <alt>+c keys in th
is order (on Mac OS X, press <Ctrl>+<Opt> instead of <alt>).')
; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 finishJSTest(); | 39 finishJSTest(); |
| 40 }; | 40 }; |
| 41 pressKey('c'); | 41 pressKey('c'); |
| 42 }; | 42 }; |
| 43 pressKey('b'); | 43 pressKey('b'); |
| 44 }; | 44 }; |
| 45 document.body.appendChild(input); | 45 document.body.appendChild(input); |
| 46 pressKey('a'); | 46 pressKey('a'); |
| 47 }); | 47 }); |
| 48 </script> | 48 </script> |
| 49 <script src="../js/resources/js-test-post.js"></script> | |
| 50 </body> | 49 </body> |
| 51 </html> | 50 </html> |
| OLD | NEW |