Skip to content

Commit c3a4d45

Browse files
committed
CommandEvent shouldn't be composed
https://bugs.webkit.org/show_bug.cgi?id=292368 Reviewed by NOBODY (OOPS!). The CommandEvent should no longer be composed, this patch fixes that. See whatwg/html#11255 * Source/WebCore/html/HTMLButtonElement.cpp: (WebCore::HTMLButtonElement::handleCommand):
1 parent e664737 commit c3a4d45

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Source/WebCore/html/HTMLButtonElement.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ void HTMLButtonElement::handleCommand()
215215
CommandEvent::Init init;
216216
init.bubbles = false;
217217
init.cancelable = true;
218-
init.composed = true;
219218
init.source = this;
220219
init.command = commandRaw.isNull() ? emptyAtom() : commandRaw;
221220

0 commit comments

Comments
 (0)