mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <HTML/HTMLElement.idl>
 | 
						|
 | 
						|
enum CanPlayTypeResult {
 | 
						|
    "",
 | 
						|
    "maybe",
 | 
						|
    "probably"
 | 
						|
};
 | 
						|
 | 
						|
interface HTMLMediaElement : HTMLElement {
 | 
						|
 | 
						|
    [Reflect] attribute DOMString src;
 | 
						|
 | 
						|
    [Reflect] attribute boolean autoplay;
 | 
						|
    [Reflect] attribute boolean loop;
 | 
						|
 | 
						|
    [Reflect] attribute boolean controls;
 | 
						|
 | 
						|
    CanPlayTypeResult canPlayType(DOMString type);
 | 
						|
};
 |