mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // 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;
 | |
| };
 | 
