Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Jan 8, 2026

⚠ NEVER add commits to this pull request.

πŸ€– This pull request was automatically created to facilitate human review of @webref/idl changes triggered by curated data at fbc3aa4.

🧐 Please review the diff below and version numbers. If all looks good, merge this pull request to release the changes to npm.

πŸ“¦ Latest released @webref/idl package was v3.70.2. Merging this pull request will release v3.71.0. Make sure that the bump is the right one for the changes.

✍ If any change needs to be made before release, do not add a commit to this pull request. Changes should rather be handled in a separate pull request and pushed to the main branch. You may leave this pull request open in the meantime, or close it. The pre-release job will automatically update this pull request or create a new one once the updates have made their way to the main branch.

πŸ›ˆ The actual change introduced by this pull request is a version bump in packages/idl/package.json. You do not need to review that change. The bumped version is not the version that will be released when this pull request is merged, but rather the version that will be released next time.

New repo files that are not yet in the released package:
+ attribution.idl
+ css-shadow.idl
+ permission-elements.idl

Released package files that no longer exist in the repo:
- css-shadow-parts.idl
- privacy-preserving-attribution.idl

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/geometry.idl packages/idl/geometry.idl
--- webref/node_modules/@webref/idl/geometry.idl
+++ packages/idl/geometry.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: Geometry Interfaces Module Level 1 (https://drafts.csswg.org/geometry/)
+// Source: Geometry Interfaces Module Level 1 (https://drafts.csswg.org/geometry-1/)
 
 [Exposed=(Window,Worker),
  Serializable]

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/model-element.idl packages/idl/model-element.idl
--- webref/node_modules/@webref/idl/model-element.idl
+++ packages/idl/model-element.idl
@@ -6,4 +6,9 @@
 [Exposed=Window]
 interface HTMLModelElement : HTMLElement {
 
+  readonly attribute Promise<HTMLModelElement> ready;
+  readonly attribute DOMPointReadOnly boundingBoxCenter;
+  readonly attribute DOMPointReadOnly boundingBoxExtents;
+  attribute DOMMatrixReadOnly entityTransform;
+
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webaudio.idl packages/idl/webaudio.idl
--- webref/node_modules/@webref/idl/webaudio.idl
+++ packages/idl/webaudio.idl
@@ -83,6 +83,7 @@
     [SecureContext] readonly attribute (DOMString or AudioSinkInfo) sinkId;
     attribute EventHandler onsinkchange;
     attribute EventHandler onerror;
+    [SameObject] readonly attribute AudioPlaybackStats playbackStats;
     AudioTimestamp getOutputTimestamp ();
     Promise<undefined> resume ();
     Promise<undefined> suspend ();
@@ -655,3 +656,15 @@
     float maxValue = 3.4028235e38;
     AutomationRate automationRate = "a-rate";
 };
+
+[Exposed=Window, SecureContext]
+interface AudioPlaybackStats {
+    readonly attribute double underrunDuration;
+    readonly attribute unsigned long underrunEvents;
+    readonly attribute double totalDuration;
+    readonly attribute double averageLatency;
+    readonly attribute double minimumLatency;
+    readonly attribute double maximumLatency;
+    undefined resetLatency();
+    [Default] object toJSON();
+};

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webgl2.idl packages/idl/webgl2.idl
--- webref/node_modules/@webref/idl/webgl2.idl
+++ packages/idl/webgl2.idl
@@ -452,7 +452,7 @@
   WebGLTransformFeedback createTransformFeedback();
   undefined deleteTransformFeedback(WebGLTransformFeedback? tf);
   [WebGLHandlesContextLoss] GLboolean isTransformFeedback(WebGLTransformFeedback? tf);
-  undefined bindTransformFeedback (GLenum target, WebGLTransformFeedback? tf);
+  undefined bindTransformFeedback(GLenum target, WebGLTransformFeedback? tf);
   undefined beginTransformFeedback(GLenum primitiveMode);
   undefined endTransformFeedback();
   undefined transformFeedbackVaryings(WebGLProgram program, sequence<DOMString> varyings, GLenum bufferMode);

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webgpu.idl packages/idl/webgpu.idl
--- webref/node_modules/@webref/idl/webgpu.idl
+++ packages/idl/webgpu.idl
@@ -258,11 +258,12 @@
 typedef [EnforceRange] unsigned long GPUTextureUsageFlags;
 [Exposed=(Window, Worker), SecureContext]
 namespace GPUTextureUsage {
-    const GPUFlagsConstant COPY_SRC          = 0x01;
-    const GPUFlagsConstant COPY_DST          = 0x02;
-    const GPUFlagsConstant TEXTURE_BINDING   = 0x04;
-    const GPUFlagsConstant STORAGE_BINDING   = 0x08;
-    const GPUFlagsConstant RENDER_ATTACHMENT = 0x10;
+    const GPUFlagsConstant COPY_SRC             = 0x01;
+    const GPUFlagsConstant COPY_DST             = 0x02;
+    const GPUFlagsConstant TEXTURE_BINDING      = 0x04;
+    const GPUFlagsConstant STORAGE_BINDING      = 0x08;
+    const GPUFlagsConstant RENDER_ATTACHMENT    = 0x10;
+    const GPUFlagsConstant TRANSIENT_ATTACHMENT = 0x20;
 };
 
 [Exposed=(Window, Worker), SecureContext]

@github-actions github-actions bot force-pushed the release-idl-20260108130209835 branch 15 times, most recently from ed0056d to b055070 Compare January 13, 2026 12:54
@github-actions github-actions bot force-pushed the release-idl-20260108130209835 branch from b055070 to af37bdf Compare January 14, 2026 08:08
@tidoust tidoust merged commit 57c70cf into main Jan 14, 2026
@tidoust tidoust deleted the release-idl-20260108130209835 branch January 14, 2026 08:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants