@webref/idl 3.45.0 → 3.45.1

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.
@@ -23,3 +23,7 @@ interface CSSViewTransitionRule : CSSRule {
23
23
  attribute ViewTransitionNavigation navigation;
24
24
  attribute DOMTokenList typeList;
25
25
  };
26
+
27
+ partial interface ViewTransition {
28
+ readonly attribute DOMTokenList typeList;
29
+ };
@@ -20,6 +20,7 @@ interface DocumentPictureInPicture : EventTarget {
20
20
  dictionary DocumentPictureInPictureOptions {
21
21
  [EnforceRange] unsigned long long width = 0;
22
22
  [EnforceRange] unsigned long long height = 0;
23
+ boolean allowReturnToOpener = true;
23
24
  };
24
25
 
25
26
  [Exposed=Window, SecureContext]
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.45.0",
4
+ "version": "3.45.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/turtledove.idl CHANGED
@@ -32,6 +32,7 @@ dictionary GenerateBidInterestGroup {
32
32
  USVString trustedBiddingSignalsURL;
33
33
  sequence<USVString> trustedBiddingSignalsKeys;
34
34
  DOMString trustedBiddingSignalsSlotSizeMode = "none";
35
+ long maxTrustedBiddingSignalsURLLength;
35
36
  any userBiddingSignals;
36
37
  sequence<AuctionAd> ads;
37
38
  sequence<AuctionAd> adComponents;
@@ -68,6 +69,7 @@ dictionary AuctionAdConfig {
68
69
  required USVString seller;
69
70
  required USVString decisionLogicURL;
70
71
  USVString trustedScoringSignalsURL;
72
+ long maxTrustedScoringSignalsURLLength;
71
73
  sequence<USVString> interestGroupBuyers;
72
74
  Promise<any> auctionSignals;
73
75
  record<DOMString, DOMString> requestedSize;