@webref/idl 3.34.2 → 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/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.2",
4
+ "version": "3.34.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
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;