diff options
author | Dan Robertson <dan@dlrobertson.com> | 2018-12-08 04:00:38 +0000 |
---|---|---|
committer | Dan Robertson <dan@dlrobertson.com> | 2018-12-11 20:14:00 +0000 |
commit | 62a9bfa0c52c86f5ea35703529e6d23c4b06ade6 (patch) | |
tree | 4c349d27944a14727f14629b21d3f69506d2920f /components/script/dom/mod.rs | |
parent | 92962de76c3400e46ff329e66eff238ac076ed38 (diff) | |
download | servo-62a9bfa0c52c86f5ea35703529e6d23c4b06ade6.tar.gz servo-62a9bfa0c52c86f5ea35703529e6d23c4b06ade6.zip |
script: Create structures for TextTrack API
Fill out the basics for the WebIDLs for the following:
- TextTrack
- TextTrackCue
- TextTrackCueList
- TextTrackList
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 7c1aa2593ee..e38a5e924ac 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -460,6 +460,10 @@ pub mod text; pub mod textcontrol; pub mod textdecoder; pub mod textencoder; +pub mod texttrack; +pub mod texttrackcue; +pub mod texttrackcuelist; +pub mod texttracklist; pub mod timeranges; pub mod touch; pub mod touchevent; |