| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) { | 4 if (window.testRunner) { |
| 5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
| 6 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
| 7 } | 7 } |
| 8 | 8 |
| 9 function test() | 9 function test() |
| 10 { | 10 { |
| 11 var el = document.getElementById('cont'); | 11 var el = document.getElementById('cont'); |
| 12 el.lastChild.focus(); | 12 el.lastChild.focus(); |
| 13 el.style.display = 'none'; | 13 el.style.display = 'none'; |
| 14 window.setTimeout(contextClick, 0); | 14 window.setTimeout(contextClick, 0); |
| 15 } | 15 } |
| 16 | 16 |
| 17 function contextClick() | 17 function contextClick() |
| 18 { | 18 { |
| 19 if (window.eventSender) | 19 if (window.eventSender) |
| 20 eventSender.keyDown("menu"); | 20 eventSender.keyDown("ContextMenu"); |
| 21 testRunner.notifyDone(); | 21 testRunner.notifyDone(); |
| 22 } | 22 } |
| 23 </script> | 23 </script> |
| 24 </head> | 24 </head> |
| 25 <body onload="test()"> | 25 <body onload="test()"> |
| 26 This tests that context menu key events are handled properly on elements tha
t | 26 This tests that context menu key events are handled properly on elements tha
t |
| 27 are not visible. | 27 are not visible. |
| 28 <div id="cont" tabindex="0">element <a href="#">link</a></div> | 28 <div id="cont" tabindex="0">element <a href="#">link</a></div> |
| 29 </body> | 29 </body> |
| 30 </html> | 30 </html> |
| OLD | NEW |