-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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
Document PopStateEvent() and PopStateEvent.state #25702
Conversation
Preview URLs (15 pages)
Flaws (16)Note! 13 documents with no flaws that don't need to be listed. 🎉 URL:
URL:
External URLs (3)URL:
URL:
(comment last updated: 2023-03-29 06:37:14) |
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.
A couple of typos
Co-authored-by: dawei-wang <dawei-wang@users.noreply.github.com>
Co-authored-by: dawei-wang <dawei-wang@users.noreply.github.com>
Co-authored-by: Michael[tm] Smith <mike@w3.org>
Description
This PR adds the missing documentation for the following:
PopStateEvent()
PopStateEvent.state
Motivation
openwebdocs/project#153
Additional details
PopStateEvent()
as the web developer usually does not call this constructor.window.history
throughout MDN: modern usage is the plainhistory
global variable. (One is left in theWindow
interface where it belongs).History API
can only be used in the window global scope (the main thread) and not in workers or worklets.PopStateEvent
inside the History API group.Related pull request