aom
aom copied to clipboard
AccessibleSetValueEvent could probably just be an Event
The spec has
interface AccessibleSetValueEvent : Event {
attribute DOMString value;
};
Event has a detail
field that can be used for a similar purpose as well, which avoids having yet another event interface. @domenic
Oh dang, it does? @jyasskin, maybe my suggestion of ValueEvent for web Bluetooth was not good.
detail
is on CustomEvent
, not Event
.