Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Aug 20, 2025

⚠ 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 023258d.

🧐 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.66.2. Merging this pull request will release v3.66.3. 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.

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/html.idl packages/idl/html.idl
--- webref/node_modules/@webref/idl/html.idl
+++ packages/idl/html.idl
@@ -1981,6 +1981,7 @@
 interface NavigationTransition {
   readonly attribute NavigationType navigationType;
   readonly attribute NavigationHistoryEntry from;
+  readonly attribute Promise<undefined> committed;
   readonly attribute Promise<undefined> finished;
 };
 
@@ -2026,6 +2027,7 @@
 };
 
 dictionary NavigationInterceptOptions {
+  NavigationPrecommitHandler precommitHandler;
   NavigationInterceptHandler handler;
   NavigationFocusReset focusReset;
   NavigationScrollBehavior scroll;
@@ -2044,6 +2046,13 @@
 callback NavigationInterceptHandler = Promise<undefined> ();
 
 [Exposed=Window]
+interface NavigationPrecommitController {
+  undefined redirect(USVString url, optional NavigationNavigateOptions options = {});
+};
+
+callback NavigationPrecommitHandler = Promise<undefined> (NavigationPrecommitController controller);
+
+[Exposed=Window]
 interface NavigationDestination {
   readonly attribute USVString url;
   readonly attribute DOMString key;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/wai-aria.idl packages/idl/wai-aria.idl
--- webref/node_modules/@webref/idl/wai-aria.idl
+++ packages/idl/wai-aria.idl
@@ -4,57 +4,57 @@
 // Source: Accessible Rich Internet Applications (WAI-ARIA) 1.3 (https://w3c.github.io/aria/)
 
 interface mixin ARIAMixin {
-  [CEReactions] attribute DOMString? role;
-  [CEReactions] attribute Element? ariaActiveDescendantElement;
-  [CEReactions] attribute DOMString? ariaAtomic;
-  [CEReactions] attribute DOMString? ariaAutoComplete;
-  [CEReactions] attribute DOMString? ariaBrailleLabel;
-  [CEReactions] attribute DOMString? ariaBrailleRoleDescription;
-  [CEReactions] attribute DOMString? ariaBusy;
-  [CEReactions] attribute DOMString? ariaChecked;
-  [CEReactions] attribute DOMString? ariaColCount;
-  [CEReactions] attribute DOMString? ariaColIndex;
-  [CEReactions] attribute DOMString? ariaColIndexText;
-  [CEReactions] attribute DOMString? ariaColSpan;
-  [CEReactions] attribute FrozenArray<Element>? ariaControlsElements;
-  [CEReactions] attribute DOMString? ariaCurrent;
-  [CEReactions] attribute FrozenArray<Element>? ariaDescribedByElements;
-  [CEReactions] attribute DOMString? ariaDescription;
-  [CEReactions] attribute FrozenArray<Element>? ariaDetailsElements;
-  [CEReactions] attribute DOMString? ariaDisabled;
-  [CEReactions] attribute FrozenArray<Element>? ariaErrorMessageElements;
-  [CEReactions] attribute DOMString? ariaExpanded;
-  [CEReactions] attribute FrozenArray<Element>? ariaFlowToElements;
-  [CEReactions] attribute DOMString? ariaHasPopup;
-  [CEReactions] attribute DOMString? ariaHidden;
-  [CEReactions] attribute DOMString? ariaInvalid;
-  [CEReactions] attribute DOMString? ariaKeyShortcuts;
-  [CEReactions] attribute DOMString? ariaLabel;
-  [CEReactions] attribute FrozenArray<Element>? ariaLabelledByElements;
-  [CEReactions] attribute DOMString? ariaLevel;
-  [CEReactions] attribute DOMString? ariaLive;
-  [CEReactions] attribute DOMString? ariaModal;
-  [CEReactions] attribute DOMString? ariaMultiLine;
-  [CEReactions] attribute DOMString? ariaMultiSelectable;
-  [CEReactions] attribute DOMString? ariaOrientation;
-  [CEReactions] attribute FrozenArray<Element>? ariaOwnsElements;
-  [CEReactions] attribute DOMString? ariaPlaceholder;
-  [CEReactions] attribute DOMString? ariaPosInSet;
-  [CEReactions] attribute DOMString? ariaPressed;
-  [CEReactions] attribute DOMString? ariaReadOnly;
-  [CEReactions] attribute DOMString? ariaRelevant;
-  [CEReactions] attribute DOMString? ariaRequired;
-  [CEReactions] attribute DOMString? ariaRoleDescription;
-  [CEReactions] attribute DOMString? ariaRowCount;
-  [CEReactions] attribute DOMString? ariaRowIndex;
-  [CEReactions] attribute DOMString? ariaRowIndexText;
-  [CEReactions] attribute DOMString? ariaRowSpan;
-  [CEReactions] attribute DOMString? ariaSelected;
-  [CEReactions] attribute DOMString? ariaSetSize;
-  [CEReactions] attribute DOMString? ariaSort;
-  [CEReactions] attribute DOMString? ariaValueMax;
-  [CEReactions] attribute DOMString? ariaValueMin;
-  [CEReactions] attribute DOMString? ariaValueNow;
-  [CEReactions] attribute DOMString? ariaValueText;
-};
-   Element includes ARIAMixin;
+[CEReactions, Reflect] attribute DOMString? role;
+[CEReactions, Reflect="aria-activedescendant"] attribute Element? ariaActiveDescendantElement;
+[CEReactions, Reflect="aria-atomic"] attribute DOMString? ariaAtomic;
+[CEReactions, Reflect="aria-autocomplete"] attribute DOMString? ariaAutoComplete;
+[CEReactions, Reflect="aria-braillelabel"] attribute DOMString? ariaBrailleLabel;
+[CEReactions, Reflect="aria-brailleroledescription"] attribute DOMString? ariaBrailleRoleDescription;
+[CEReactions, Reflect="aria-busy"] attribute DOMString? ariaBusy;
+[CEReactions, Reflect="aria-checked"] attribute DOMString? ariaChecked;
+[CEReactions, Reflect="aria-colcount"] attribute DOMString? ariaColCount;
+[CEReactions, Reflect="aria-colindex"] attribute DOMString? ariaColIndex;
+[CEReactions, Reflect="aria-colindextext"] attribute DOMString? ariaColIndexText;
+[CEReactions, Reflect="aria-colspan"] attribute DOMString? ariaColSpan;
+[CEReactions, Reflect="aria-controls"] attribute FrozenArray<Element>? ariaControlsElements;
+[CEReactions, Reflect="aria-current"] attribute DOMString? ariaCurrent;
+[CEReactions, Reflect="aria-describedby"] attribute FrozenArray<Element>? ariaDescribedByElements;
+[CEReactions, Reflect="aria-description"] attribute DOMString? ariaDescription;
+[CEReactions, Reflect="aria-details"] attribute FrozenArray<Element>? ariaDetailsElements;
+[CEReactions, Reflect="aria-disabled"] attribute DOMString? ariaDisabled;
+[CEReactions, Reflect="aria-errormessage"] attribute FrozenArray<Element>? ariaErrorMessageElements;
+[CEReactions, Reflect="aria-expanded"] attribute DOMString? ariaExpanded;
+[CEReactions, Reflect="aria-flowto"] attribute FrozenArray<Element>? ariaFlowToElements;
+[CEReactions, Reflect="aria-haspopup"] attribute DOMString? ariaHasPopup;
+[CEReactions, Reflect="aria-hidden"] attribute DOMString? ariaHidden;
+[CEReactions, Reflect="aria-invalid"] attribute DOMString? ariaInvalid;
+[CEReactions, Reflect="aria-keyshortcuts"] attribute DOMString? ariaKeyShortcuts;
+[CEReactions, Reflect="aria-label"] attribute DOMString? ariaLabel;
+[CEReactions, Reflect="aria-labelledby"] attribute FrozenArray<Element>? ariaLabelledByElements;
+[CEReactions, Reflect="aria-level"] attribute DOMString? ariaLevel;
+[CEReactions, Reflect="aria-live"] attribute DOMString? ariaLive;
+[CEReactions, Reflect="aria-modal"] attribute DOMString? ariaModal;
+[CEReactions, Reflect="aria-multiline"] attribute DOMString? ariaMultiLine;
+[CEReactions, Reflect="aria-multiselectable"] attribute DOMString? ariaMultiSelectable;
+[CEReactions, Reflect="aria-orientation"] attribute DOMString? ariaOrientation;
+[CEReactions, Reflect="aria-owns"] attribute FrozenArray<Element>? ariaOwnsElements;
+[CEReactions, Reflect="aria-placeholder"] attribute DOMString? ariaPlaceholder;
+[CEReactions, Reflect="aria-posinset"] attribute DOMString? ariaPosInSet;
+[CEReactions, Reflect="aria-pressed"] attribute DOMString? ariaPressed;
+[CEReactions, Reflect="aria-readonly"] attribute DOMString? ariaReadOnly;
+[CEReactions, Reflect="aria-relevant"] attribute DOMString? ariaRelevant;
+[CEReactions, Reflect="aria-required"] attribute DOMString? ariaRequired;
+[CEReactions, Reflect="aria-roledescription"] attribute DOMString? ariaRoleDescription;
+[CEReactions, Reflect="aria-rowcount"] attribute DOMString? ariaRowCount;
+[CEReactions, Reflect="aria-rowindex"] attribute DOMString? ariaRowIndex;
+[CEReactions, Reflect="aria-rowindextext"] attribute DOMString? ariaRowIndexText;
+[CEReactions, Reflect="aria-rowspan"] attribute DOMString? ariaRowSpan;
+[CEReactions, Reflect="aria-selected"] attribute DOMString? ariaSelected;
+[CEReactions, Reflect="aria-setsize"] attribute DOMString? ariaSetSize;
+[CEReactions, Reflect="aria-sort"] attribute DOMString? ariaSort;
+[CEReactions, Reflect="aria-valuemax"] attribute DOMString? ariaValueMax;
+[CEReactions, Reflect="aria-valuemin"] attribute DOMString? ariaValueMin;
+[CEReactions, Reflect="aria-valuenow"] attribute DOMString? ariaValueNow;
+[CEReactions, Reflect="aria-valuetext"] attribute DOMString? ariaValueText;
+  };
+  Element includes ARIAMixin;

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
@@ -129,6 +129,7 @@
     "subgroups",
     "texture-formats-tier1",
     "texture-formats-tier2",
+    "primitive-index",
 };
 
 [Exposed=(Window, Worker), SecureContext]

@github-actions github-actions bot force-pushed the release-idl-20250820184907038 branch from 7efe4b1 to 88ebd73 Compare August 21, 2025 00:55
@github-actions github-actions bot force-pushed the release-idl-20250820184907038 branch 23 times, most recently from edb4d0e to 6657162 Compare August 26, 2025 18:47
@github-actions github-actions bot force-pushed the release-idl-20250820184907038 branch from 6657162 to 1627d6e Compare August 27, 2025 00:59
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.

0 participants