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
@@ -9182,7 +9186,13 @@ declare var HTMLVideoElement: {
9182
9186
9183
9187
/** Events that fire when the fragment identifier of the URL has changed. */
9184
9188
interface HashChangeEvent extends Event {
9189
+
/**
9190
+
* Returns the URL of the session history entry that is now current.
9191
+
*/
9185
9192
readonly newURL: string;
9193
+
/**
9194
+
* Returns the URL of the session history entry that was previously current.
9195
+
*/
9186
9196
readonly oldURL: string;
9187
9197
}
9188
9198
@@ -11473,12 +11483,25 @@ declare var OverflowEvent: {
11473
11483
11474
11484
/** The PageTransitionEvent is fired when a document is being loaded or unloaded. */
11475
11485
interface PageTransitionEvent extends Event {
11486
+
/**
11487
+
* For the pageshow event, returns false if the page is newly being loaded (and the load event will fire). Otherwise, returns true.
11488
+
*
11489
+
* For the pagehide event, returns false if the page is going away for the last time. Otherwise, returns true, meaning that (if nothing conspires to make the page unsalvageable) the page might be reused if the user navigates back to this page.
11490
+
*
11491
+
* Things that can cause the page to be unsalvageable include:
/** A PannerNode always has exactly one input and one output: the input can be mono or stereo but the output is always stereo (2 channels); you can't have panning effects without at least two audio channels! */
@@ -11975,6 +11998,9 @@ declare var PointerEvent: {
11975
11998
11976
11999
/** PopStateEvent is an event handler for the popstate event on the window. */
11977
12000
interface PopStateEvent extends Event {
12001
+
/**
12002
+
* Returns a copy of the information that was provided to pushState() or replaceState().
12003
+
*/
11978
12004
readonly state: any;
11979
12005
}
11980
12006
Collapse file: inputfiles/idl/HTML - Browsing the Web.commentmap.json
"popstateevent-state": "Returns a copy of the information that was provided to pushState() or replaceState().",
3
+
"hashchangeevent-oldurl": "Returns the URL of the session history entry that was previously current.",
4
+
"hashchangeevent-newurl": "Returns the URL of the session history entry that is now current.",
5
+
"pagetransitionevent-persisted": "For the pageshow event, returns false if the page is newly being loaded (and the load event will fire). Otherwise, returns true.\n\nFor the pagehide event, returns false if the page is going away for the last time. Otherwise, returns true, meaning that (if nothing conspires to make the page unsalvageable) the page might be reused if the user navigates back to this page.\n\nThings that can cause the page to be unsalvageable include:\n\nListening for beforeunload events\nListening for unload events\nHaving iframes that are not salvageable\nActive WebSocket objects\nAborting a Document"
6
+
}
Collapse file: inputfiles/idl/HTML - Browsing the Web.widl
0 commit comments