diff options
author | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-10 14:47:03 -0600 |
---|---|---|
committer | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-18 12:22:20 -0600 |
commit | 2460997ee18917bda1cdb68e46b7fd5520c3ade7 (patch) | |
tree | db8d87d4a3971e2326b54a0203e838cf94b296e1 /components/script/dom/webidls/HTMLTrackElement.webidl | |
parent | 438191e0b207fd6294a465149a37c63f32ce9161 (diff) | |
download | servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.tar.gz servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.zip |
Add CEReactions where needed
Diffstat (limited to 'components/script/dom/webidls/HTMLTrackElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTrackElement.webidl | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/components/script/dom/webidls/HTMLTrackElement.webidl b/components/script/dom/webidls/HTMLTrackElement.webidl index 0692a484fb7..c6260e0e0e2 100644 --- a/components/script/dom/webidls/HTMLTrackElement.webidl +++ b/components/script/dom/webidls/HTMLTrackElement.webidl @@ -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; }; |