aom icon indicating copy to clipboard operation
aom copied to clipboard

AccessibleSetValueEvent could probably just be an Event

Open esprehn opened this issue 8 years ago • 2 comments

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

esprehn avatar Sep 21 '16 12:09 esprehn

Oh dang, it does? @jyasskin, maybe my suggestion of ValueEvent for web Bluetooth was not good.

domenic avatar Sep 21 '16 12:09 domenic

detail is on CustomEvent, not Event.

jyasskin avatar Sep 21 '16 16:09 jyasskin