-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
Misc. event refactoring #3764
Misc. event refactoring #3764
Conversation
* `pagehide` * `pageshow` * `rejectionhandled` * `unhandledrejection` Sources for `pageshow` and `pagehide`: https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Releases/1.5/Using_Firefox_1.5_caching. All other version information copied from the corresponding event handler properties. * `push` * `pushsubscriptionchange` Source: All version information taken from the corresponding event handler properties. * `paymentmethodchange` * `merchantvalidation` * `shippingaddresschange` * `shippingoptionchange` Source: All version information taken from the corresponding event handler properties. * `mute` * `unmute` Source: All version information taken from the corresponding event handler properties. * PromiseRejectionEvent (cleaned up notes that refer to changed events)
Assigned to Chris for review as planned during sprint planning meetings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @a2sheppy !
I've reviewed this, and it's looking mostly good. I had a few queries:
- I couldn't find
merchantvalidation
/onmerchantvalidation
inPaymentRequest
. Add these? pageshow
/pagehide
looks like it is only supported in Fx, from your data. Did you test it in other browsers? Is it therefore experimental, in which caseexperimental
should be set totrue
for those?- there's no entry for the
onrejectionhandled
handler. Add one?
I'm assuming you've written pages for these too — do you want me to review them as well?
As to #2, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This all looks good to me; thanks sheppy!
pagehide
pageshow
rejectionhandled
unhandledrejection
Sources for
pageshow
andpagehide
: https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Releases/1.5/Using_Firefox_1.5_caching.All other version information copied from the corresponding event handler properties.
push
pushsubscriptionchange
Source: All version information taken from the corresponding event handler properties.
paymentmethodchange
merchantvalidation
shippingaddresschange
shippingoptionchange
Source: All version information taken from the corresponding event handler properties.
mute
unmute
Source: All version information taken from the corresponding event handler properties.
A checklist to help your pull request get merged faster: