html_sys/embedded/
mod.rs

1//! In addition to regular multimedia content, HTML can include a variety of other content, even if it's not always easy to interact with.
2mod area;
3pub use area::*;
4mod audio;
5pub use audio::*;
6mod embed;
7pub use embed::*;
8mod iframe;
9pub use iframe::*;
10mod img;
11pub use img::*;
12mod map;
13pub use map::*;
14mod object;
15pub use object::*;
16mod picture;
17pub use picture::*;
18mod source;
19pub use source::*;
20mod track;
21pub use track::*;
22mod video;
23pub use video::*;