Skip to content

Commit c4c2cb8

Browse files
committed
Patch cancel event to refine bubbling information
As discussed in #1212, the `cancel` event bubbles on `HTMLInputElement`, but it does not bubble on `HTMLDialogElement`. It does not bubble on `CloseWatcher` either but that's because `CloseWatcher` is not part of a bubbling tree in any case. Events extraction cannot automatically get this nuance, be it only because it only sees `HTMLElement` as target interface for the event, and not `HTMLInputElement` and `HTMLDialogElement`. In practice, it claims that the event bubbles, which is neither wrong nor right. This patch restricts the `cancel` entry in the HTML events extract to only target `HTMLInputElement`, in order to create the right bubbling entry. And it creates another `cancel` entry which does not bubble for `HTMLDialogElement` and `CloseWatcher`. With this patch (and the new version of Reffy), we should end up with the following entry in the consolidated `events.json` file, which captures the fact that: - the event bubbles on `HTMLInputElement` - the event does not bubble on `HTMLDialogElement` - the concept of bubbling is meaningless on `CloseWatcher` ```json { "href": "https://html.spec.whatwg.org/multipage/indices.html#event-cancel", "src": { "format": "summary table", "href": "https://html.spec.whatwg.org/multipage/indices.html#event-cancel" }, "type": "cancel", "targets": [ { "target": "HTMLInputElement", "bubbles": true, "bubblingPath": [ "Node", "Document", "Window" ] }, { "target": "CloseWatcher" }, { "target": "HTMLDialogElement", "bubbles": false } ], "interface": "Event" } ```
1 parent cce9b99 commit c4c2cb8

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

tools/amend-event-data.js

+25-4
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ const patches = {
8181
pattern: { type: /^(cut|clipboardchange|paste|copy)$/ },
8282
matched: 4,
8383
change: {
84-
interface: "ClipboardEvent",
84+
interface: "ClipboardEvent",
8585
targets: ["GlobalEventHandlers"],
86-
bubbles: true
86+
bubbles: true
8787
}
8888
}
8989
],
@@ -183,15 +183,36 @@ const patches = {
183183
matched: 7,
184184
change: { interface: 'DragEvent', bubbles: true }
185185
},
186+
// The "HTMLElement" base interface receives most HTML events in theory,
187+
// but some of the events only fire on specific HTML elements in practice.
188+
// The following updates refine the target interfaces of these events.
189+
// (This is not a temporary fix: "HTMLElement" is the correct target
190+
// interface from a spec perspective, that's where the event handlers are
191+
// defined)
192+
// Also, the "cancel" event bubbles on input elements but not on other
193+
// target interfaces, so we need to duplicate the entry in the extract.
186194
{
187195
pattern: { type: "cancel"},
188196
matched: 1,
189-
change: { targets: ["HTMLDialogElement", "HTMLInputElement"] }
197+
change: { targets: ["HTMLInputElement"] }
198+
},
199+
{
200+
add: {
201+
type: "cancel",
202+
interface: "Event",
203+
bubbles: false,
204+
targets: ["CloseWatcher", "HTMLDialogElement"],
205+
href: "https://html.spec.whatwg.org/multipage/indices.html#event-cancel",
206+
src: {
207+
format: "summary table",
208+
href: "https://html.spec.whatwg.org/multipage/indices.html#event-cancel"
209+
}
210+
}
190211
},
191212
{
192213
pattern: { type: "close"},
193214
matched: 1,
194-
change: { targets: ["HTMLDialogElement" ] }
215+
change: { targets: ["CloseWatcher", "HTMLDialogElement", "MessagePort"] }
195216
},
196217
{
197218
pattern: { type: "change", targets: "HTMLElement"},

0 commit comments

Comments
 (0)