mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			603 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			603 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
 | |
| [InvalidValueDefault=anonymous]
 | |
| enum CORSSettingsAttribute {
 | |
|     "anonymous",
 | |
|     "use-credentials"
 | |
| };
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-loading-attribute
 | |
| [MissingValueDefault=eager, InvalidValueDefault=eager]
 | |
| enum LazyLoadingAttribute {
 | |
|     "lazy",
 | |
|     "eager"
 | |
| };
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes
 | |
| [MissingValueDefault=auto, InvalidValueDefault=auto]
 | |
| enum FetchPriorityAttribute {
 | |
|     "high",
 | |
|     "low",
 | |
|     "auto"
 | |
| };
 | 
