From dc318c86eb309b42d9303231ae551a7c542aeb45 Mon Sep 17 00:00:00 2001 From: Joey Arhar Date: Thu, 24 Apr 2025 09:09:43 -0700 Subject: [PATCH 1/2] Make command events not composed Based on feedback here, there may be a better alternative to making this event composed: https://github.com/whatwg/html/issues/11148 --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index f1ceb847a67..3bf558975d0 100644 --- a/source +++ b/source @@ -53722,8 +53722,8 @@ interface HTMLButtonElement : HTMLElement { CommandEvent, with its command attribute initialized to command, its source attribute initialized to element, - and its cancelable and composed attributes initialized to true.

+ its cancelable attribute initialized to true, and + its composed attribute initialized to false.

DOM standard issue #1328 tracks how to better standardize associated event data in a way which makes sense on From 05e5d89aef0596169db7c28248f8c8452c924807 Mon Sep 17 00:00:00 2001 From: Joey Arhar Date: Thu, 24 Apr 2025 14:05:44 -0700 Subject: [PATCH 2/2] omit composed attribute --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index 3bf558975d0..f81db80abcf 100644 --- a/source +++ b/source @@ -53722,8 +53722,8 @@ interface HTMLButtonElement : HTMLElement { CommandEvent, with its command attribute initialized to command, its source attribute initialized to element, - its cancelable attribute initialized to true, and - its composed attribute initialized to false.

+ and its cancelable attribute initialized to + true.

DOM standard issue #1328 tracks how to better standardize associated event data in a way which makes sense on