Files
servo/components/script/dom/webvtt/mod.rs
Martin Robinson 445e04ddad script: Move WebVTT interfaces into a webvtt directory (#42326)
This change organizes the rest of the media-related interfaces by moving
the WebVTT-related[^1] interfaces into their own directory and two more
media-related interfaces into the `media` directory.

Testing: This just moves source files around, so a successful build
should be a good enough test.
Fixes: This is part of #38901.

Signed-off-by: Martin Robinson <mrobinson@igalia.com>
2026-02-04 08:15:12 +00:00

12 lines
401 B
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
pub(crate) mod texttrack;
pub(crate) mod texttrackcue;
pub(crate) mod texttrackcuelist;
pub(crate) mod texttracklist;
pub(crate) mod trackevent;
pub(crate) mod vttcue;
pub(crate) mod vttregion;