| OLD | NEW |
| 1 Verify the Class Hierarchy | 1 Verify the Class Hierarchy |
| 2 ========================== | 2 ========================== |
| 3 | 3 |
| 4 Make sure the events inherit from the correct interfaces: | 4 Make sure the events inherit from the correct interfaces: |
| 5 e.g., UIEvent > MouseEvent | 5 e.g., UIEvent > MouseEvent |
| 6 | 6 |
| 7 Requires manual and automated tests | 7 Requires manual and automated tests |
| 8 * manually create event and verify hierarchy | 8 * manually create event and verify hierarchy |
| 9 * WebDriver create the event and verify hierarchy | 9 * WebDriver create the event and verify hierarchy |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 KeyboardEvent | 26 KeyboardEvent |
| 27 * keydown, keyup | 27 * keydown, keyup |
| 28 * need to show interaction with beforeinput and input, which are in the Editing
spec | 28 * need to show interaction with beforeinput and input, which are in the Editing
spec |
| 29 | 29 |
| 30 CompositionEvent | 30 CompositionEvent |
| 31 * compositionstart | 31 * compositionstart |
| 32 * compositionupdate | 32 * compositionupdate |
| 33 * compositionend | 33 * compositionend |
| 34 * need to show interaction with the keyboard events: keydown, keyup | 34 * need to show interaction with the keyboard events: keydown, keyup |
| OLD | NEW |