We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this.currentTarget == null
Steps 4 and 5 of Event::composedPath say to
4. Let currentTarget be this’s currentTarget attribute value. 5. Append currentTarget to composedPath.
composedPath is a sequence<EventTarget>, but currentTarget is a EventTarget?, per the Event idl interface
composedPath
sequence<EventTarget>
currentTarget
EventTarget?
It is unclear to me what should happen when currentTarget is null.
null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the issue with the DOM Standard?
Steps 4 and 5 of Event::composedPath say to
composedPath
is asequence<EventTarget>
, butcurrentTarget
is aEventTarget?
, per the Event idl interfaceIt is unclear to me what should happen when
currentTarget
isnull
.The text was updated successfully, but these errors were encountered: