@webref/idl 3.44.1 → 3.44.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css-view-transitions-2.idl +1 -1
- package/html.idl +13 -0
- package/package.json +1 -1
package/html.idl
CHANGED
|
@@ -2061,6 +2061,18 @@ dictionary HashChangeEventInit : EventInit {
|
|
|
2061
2061
|
USVString newURL = "";
|
|
2062
2062
|
};
|
|
2063
2063
|
|
|
2064
|
+
[Exposed=Window]
|
|
2065
|
+
interface PageSwapEvent : Event {
|
|
2066
|
+
constructor(DOMString type, optional PageSwapEventInit eventInitDict = {});
|
|
2067
|
+
readonly attribute NavigationActivation? activation;
|
|
2068
|
+
readonly attribute ViewTransition? viewTransition;
|
|
2069
|
+
};
|
|
2070
|
+
|
|
2071
|
+
dictionary PageSwapEventInit : EventInit {
|
|
2072
|
+
NavigationActivation? activation = null;
|
|
2073
|
+
ViewTransition? viewTransition = null;
|
|
2074
|
+
};
|
|
2075
|
+
|
|
2064
2076
|
[Exposed=Window]
|
|
2065
2077
|
interface PageRevealEvent : Event {
|
|
2066
2078
|
constructor(DOMString type, optional PageRevealEventInit eventInitDict = {});
|
|
@@ -2239,6 +2251,7 @@ interface mixin WindowEventHandlers {
|
|
|
2239
2251
|
attribute EventHandler onpagehide;
|
|
2240
2252
|
attribute EventHandler onpagereveal;
|
|
2241
2253
|
attribute EventHandler onpageshow;
|
|
2254
|
+
attribute EventHandler onpageswap;
|
|
2242
2255
|
attribute EventHandler onpopstate;
|
|
2243
2256
|
attribute EventHandler onrejectionhandled;
|
|
2244
2257
|
attribute EventHandler onstorage;
|