mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
dom: Set "composed" flag on construction for some event types (#36239)
"Composed" flag (https://dom.spec.whatwg.org/#composed-flag) should be properly set on event construction phase from optional "EventInit" dictionary (https://dom.spec.whatwg.org/#dom-eventinit-composed). The limited set of event types (Custom/Error/Focus/Mouse) will be affected by this CL (used in WPT tests). --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] There are WPT shadow-dom tests which have new issues related to event "relatedTarget" property tests/wpt/tests/shadow-dom/event-composed-path-with-related-target.html tests/wpt/tests/shadow-dom/event-with-related-target.html Signed-off-by: Andrei Volykhin <andrei.volykhin@gmail.com>
This commit is contained in:
parent
7382efa209
commit
f48c3a5e2a
10 changed files with 24 additions and 21 deletions
|
@ -1,3 +0,0 @@
|
|||
[Event-dispatch-listener-order.window.html]
|
||||
[Event-dispatch-listener-order]
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[event-global.html]
|
||||
[window.event is undefined inside window.onerror if the target is in a shadow tree (ErrorEvent dispatched inside shadow tree)]
|
||||
expected: FAIL
|
|
@ -1,4 +1,10 @@
|
|||
[event-composed-path-with-related-target.html]
|
||||
[Event path for an event with a relatedTarget. Event should stop at the shadow root]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget which is identical to target. Event should be dispatched and should stop at the shadow root.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. target and relaterTarget do not share any shadow-including ancestor. target is in a shadow tree.]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -17,9 +23,6 @@
|
|||
[Event path for an event with a relatedTarget. target is assigned to a slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. relatedTarget is assigned to a slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. Event should be dispatched at every slots.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
[event-composed.html]
|
||||
[A synthetic MouseEvent with composed=true should not be scoped]
|
||||
expected: FAIL
|
||||
|
||||
[A synthetic FocusEvent with composed=true should not be scoped]
|
||||
expected: FAIL
|
||||
|
||||
[A UA click event should not be scoped]
|
||||
expected: FAIL
|
||||
|
|
|
@ -5,9 +5,6 @@
|
|||
[Event properties post dispatch with relatedTarget in the same shadow tree. (composed: false)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the document tree and the shadow tree. (composed: true)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the document tree and the shadow tree. (composed: false)]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
[event-with-related-target.html]
|
||||
[Firing an event at B1a with relatedNode at B1 with open mode shadow trees]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event at B1a with relatedNode at B1 with closed mode shadow trees]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event at B1a with relatedNode at B1b1 with open mode shadow trees]
|
||||
expected: FAIL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue