You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reportError(undefined) constructs an ErrorEvent instance whose error member will return undefined, but you cannot emulate this in userland (as ErrorEventInit's error dictionary member defaults to null).
reportError(undefined)
constructs anErrorEvent
instance whoseerror
member will returnundefined
, but you cannot emulate this in userland (asErrorEventInit
'serror
dictionary member defaults to null).Based on discussion in web-platform-tests/wpt#33206 we have two options:
ErrorEventInit
'serror
's default.Map undefined to null.reportError()
gets to construct these kind ofErrorEvent
instances.cc @evilpie @domenic @mfreed7 @nayeemrmn
The text was updated successfully, but these errors were encountered: