@webref/idl 3.34.1 → 3.34.3

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/fenced-frame.idl CHANGED
@@ -1,7 +1,7 @@
1
1
  // GENERATED CONTENT - DO NOT EDIT
2
2
  // Content was automatically extracted by Reffy into webref
3
3
  // (https://github.com/w3c/webref)
4
- // Source: Fenced frame (https://wicg.github.io/fenced-frame/)
4
+ // Source: Fenced Frame (https://wicg.github.io/fenced-frame/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface HTMLFencedFrameElement : HTMLElement {
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.34.1",
4
+ "version": "3.34.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -12,6 +12,6 @@
12
12
  "license": "MIT",
13
13
  "main": "index.js",
14
14
  "peerDependencies": {
15
- "webidl2": "^24.2.2"
15
+ "webidl2": "^24.3.0"
16
16
  }
17
17
  }
@@ -18,6 +18,7 @@ partial interface Document {
18
18
  partial interface HTMLIFrameElement {
19
19
  [SameObject] readonly attribute PermissionsPolicy permissionsPolicy;
20
20
  };
21
+
21
22
  [Exposed=Window]
22
23
  interface PermissionsPolicyViolationReportBody : ReportBody {
23
24
  readonly attribute DOMString featureId;
package/turtledove.idl CHANGED
@@ -95,6 +95,7 @@ interface InterestGroupScoringScriptRunnerGlobalScope
95
95
  interface InterestGroupReportingScriptRunnerGlobalScope
96
96
  : InterestGroupScriptRunnerGlobalScope {
97
97
  undefined sendReportTo(DOMString url);
98
+ undefined registerAdBeacon(record<DOMString, USVString> map);
98
99
  };
99
100
 
100
101
  dictionary AdRender {
@@ -27,7 +27,7 @@ typedef [EnforceRange] unsigned long long SmallCryptoKeyID;
27
27
  typedef (SmallCryptoKeyID or bigint) CryptoKeyID;
28
28
 
29
29
  [Exposed=(Window,DedicatedWorker)]
30
- interface SFrameTransform {
30
+ interface SFrameTransform : EventTarget {
31
31
  constructor(optional SFrameTransformOptions options = {});
32
32
  Promise<undefined> setEncryptionKey(CryptoKey key, optional CryptoKeyID keyID);
33
33
  attribute EventHandler onerror;
package/webtransport.idl CHANGED
@@ -98,6 +98,7 @@ dictionary WebTransportDatagramStats {
98
98
 
99
99
  [Exposed=(Window,Worker), SecureContext, Transferable]
100
100
  interface WebTransportSendStream : WritableStream {
101
+ attribute long long? sendOrder;
101
102
  Promise<WebTransportSendStreamStats> getStats();
102
103
  };
103
104
 
@@ -130,12 +131,12 @@ interface WebTransportError : DOMException {
130
131
  constructor(optional DOMString message = "", optional WebTransportErrorOptions options = {});
131
132
 
132
133
  readonly attribute WebTransportErrorSource source;
133
- readonly attribute octet? streamErrorCode;
134
+ readonly attribute unsigned long? streamErrorCode;
134
135
  };
135
136
 
136
137
  dictionary WebTransportErrorOptions {
137
138
  WebTransportErrorSource source = "stream";
138
- [Clamp] octet? streamErrorCode = null;
139
+ [Clamp] unsigned long? streamErrorCode = null;
139
140
  };
140
141
 
141
142
  enum WebTransportErrorSource {