mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
17 lines
468 B
Plaintext
17 lines
468 B
Plaintext
// https://w3c.github.io/webvtt/#enumdef-scrollsetting
|
|
enum ScrollSetting { "", "up" };
|
|
|
|
// https://w3c.github.io/webvtt/#vttregion
|
|
[Exposed=Window]
|
|
interface VTTRegion {
|
|
constructor();
|
|
attribute DOMString id;
|
|
attribute double width;
|
|
attribute unsigned long lines;
|
|
attribute double regionAnchorX;
|
|
attribute double regionAnchorY;
|
|
attribute double viewportAnchorX;
|
|
attribute double viewportAnchorY;
|
|
attribute ScrollSetting scroll;
|
|
};
|