From 4a14a8c0d850024dedb47fb8a699760ab53c5230 Mon Sep 17 00:00:00 2001 From: Luke Warlow Date: Thu, 6 Aug 2026 09:59:05 +0100 Subject: [PATCH] Correct reflection definition for commandForElement and popoverTargetElement --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index 24419855ab6..6a7bc611d41 100644 --- a/source +++ b/source @@ -56647,7 +56647,7 @@ interface HTMLButtonElement : HTMLElement { [HTMLConstructor] constructor(); [CEReactions, ReflectSetter] attribute DOMString command; - [CEReactions, Reflect] attribute Element? commandForElement; + [CEReactions, Reflect="commandfor"] attribute Element? commandForElement; [CEReactions, Reflect] attribute boolean disabled; readonly attribute HTMLFormElement? form; [CEReactions, ReflectSetter] attribute USVString formAction; @@ -92988,7 +92988,7 @@ dictionary DragEventInit : MouseEventInit { DOM interface:
interface mixin PopoverTargetAttributes {
-  [CEReactions, Reflect] attribute Element? popoverTargetElement;
+  [CEReactions, Reflect="popovertarget"] attribute Element? popoverTargetElement;
   [CEReactions] attribute DOMString popoverTargetAction;
 };