mirror of
https://github.com/servo/servo.git
synced 2025-09-30 00:29:14 +01:00
Update the list of global and window event handlers (#36894)
There's an expanded list of event handlers content attributes that need to be forwarded to the corresponding window of the body element, and this PR adds the remaining ones. The full list can be seen in [this link](https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers-on-elements%2C-document-objects%2C-and-window-objects%3Aevent-handlers-6). Testing: Covered by various WPT tests --------- Signed-off-by: Keith Yeung <kungfukeith11@gmail.com>
This commit is contained in:
parent
d725fb3728
commit
da1c49299b
18 changed files with 123 additions and 1013 deletions
|
@ -1,28 +1,22 @@
|
|||
[webkit-animation-end-event.html]
|
||||
expected: TIMEOUT
|
||||
[onanimationend and onwebkitanimationend are not aliases]
|
||||
expected: FAIL
|
||||
|
||||
[dispatchEvent of a webkitAnimationEnd event does trigger a prefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[dispatchEvent of an animationend event does not trigger a prefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[onwebkitanimationend event handler should trigger for an animation]
|
||||
expected: FAIL
|
||||
expected: TIMEOUT
|
||||
|
||||
[onwebkitanimationend event handler should not trigger if an unprefixed event handler also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[onwebkitanimationend event handler should not trigger if an unprefixed listener also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[event types for prefixed and unprefixed animationend event handlers should be named appropriately]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationEnd event listener should trigger for an animation]
|
||||
expected: TIMEOUT
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationEnd event listener should not trigger if an unprefixed listener also exists]
|
||||
expected: NOTRUN
|
||||
|
|
|
@ -1,28 +1,22 @@
|
|||
[webkit-animation-iteration-event.html]
|
||||
expected: TIMEOUT
|
||||
[onanimationiteration and onwebkitanimationiteration are not aliases]
|
||||
expected: FAIL
|
||||
|
||||
[dispatchEvent of a webkitAnimationIteration event does trigger a prefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[dispatchEvent of an animationiteration event does not trigger a prefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[onwebkitanimationiteration event handler should trigger for an animation]
|
||||
expected: FAIL
|
||||
expected: TIMEOUT
|
||||
|
||||
[onwebkitanimationiteration event handler should not trigger if an unprefixed event handler also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[onwebkitanimationiteration event handler should not trigger if an unprefixed listener also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[event types for prefixed and unprefixed animationiteration event handlers should be named appropriately]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationIteration event listener should trigger for an animation]
|
||||
expected: TIMEOUT
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationIteration event listener should not trigger if an unprefixed listener also exists]
|
||||
expected: NOTRUN
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[webkit-animation-start-event.html]
|
||||
expected: TIMEOUT
|
||||
[onanimationstart and onwebkitanimationstart are not aliases]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -8,32 +9,29 @@
|
|||
[dispatchEvent of a webkitAnimationStart event does not trigger an unprefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[dispatchEvent of an animationstart event does not trigger a prefixed event handler or listener]
|
||||
expected: FAIL
|
||||
|
||||
[onwebkitanimationstart event handler should trigger for an animation]
|
||||
expected: FAIL
|
||||
expected: TIMEOUT
|
||||
|
||||
[onwebkitanimationstart event handler should not trigger if an unprefixed event handler also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[onwebkitanimationstart event handler should not trigger if an unprefixed listener also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[event types for prefixed and unprefixed animationstart event handlers should be named appropriately]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationStart event listener should trigger for an animation]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationStart event listener should not trigger if an unprefixed listener also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationStart event listener should not trigger if an unprefixed event handler also exists]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[event types for prefixed and unprefixed animationstart event listeners should be named appropriately]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
||||
[webkitAnimationStart event listener is case sensitive]
|
||||
expected: FAIL
|
||||
expected: NOTRUN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue