OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <body> |
| 3 <script src="../../../fast/forms/resources/common.js"></script> |
| 4 <script src="../resources/text-based-repaint.js"></script> |
| 5 <input type="submit"> |
| 6 <!-- A keydown event after mouse-focus should draw a focus ring. --> |
| 7 <script> |
| 8 window.onload = runRepaintTest; |
| 9 window.enablePixelTesting = true; |
| 10 eventSender.mouseMoveTo(800, 600); |
| 11 clickElement(document.querySelector('input')); |
| 12 function repaintTest() { |
| 13 eventSender.keyDown('ShiftLeft'); |
| 14 } |
| 15 </script> |
| 16 </body> |
OLD | NEW |