@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.
@@ -21,5 +21,5 @@ enum ViewTransitionNavigation { "auto", "none" };
21
21
  [Exposed=Window]
22
22
  interface CSSViewTransitionRule : CSSRule {
23
23
  attribute ViewTransitionNavigation navigation;
24
- attribute DOMTokenList type;
24
+ attribute DOMTokenList typeList;
25
25
  };
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.44.1",
4
+ "version": "3.44.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"