Add CEReactions where needed

This commit is contained in:
Connor Brewster 2017-07-10 14:47:03 -06:00
parent 438191e0b2
commit 2460997ee1
100 changed files with 1025 additions and 979 deletions

View file

@ -5,17 +5,22 @@
// https://html.spec.whatwg.org/multipage/#htmltrackelement
[HTMLConstructor]
interface HTMLTrackElement : HTMLElement {
// attribute DOMString kind;
// attribute DOMString src;
// attribute DOMString srclang;
// attribute DOMString label;
// attribute boolean default;
// [CEReactions]
// attribute DOMString kind;
// [CEReactions]
// attribute DOMString src;
// [CEReactions]
// attribute DOMString srclang;
// [CEReactions]
// attribute DOMString label;
// [CEReactions]
// attribute boolean default;
//const unsigned short NONE = 0;
//const unsigned short LOADING = 1;
//const unsigned short LOADED = 2;
//const unsigned short ERROR = 3;
//readonly attribute unsigned short readyState;
// const unsigned short NONE = 0;
// const unsigned short LOADING = 1;
// const unsigned short LOADED = 2;
// const unsigned short ERROR = 3;
// readonly attribute unsigned short readyState;
//readonly attribute TextTrack track;
// readonly attribute TextTrack track;
};