mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	This does _NOT_ correspond to anything in the IDL or ECMAScript spec, but is a custom extended attribute. We use it to define the "enumerated" values of an attribute
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			Text
		
	
	
	
	
	
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
 | 
						|
[MissingValueDefault=, InvalidValueDefault=anonymous]
 | 
						|
enum CORSSettingsAttribute {
 | 
						|
    "anonymous",
 | 
						|
    "",
 | 
						|
    "use-credentials"
 | 
						|
};
 |