mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:32:45 +00:00 
			
		
		
		
	 d767f14df8
			
		
	
	
		d767f14df8
		
	
	
	
	
		
			
			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
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <HTML/Scripting/Fetching.idl>
 | |
| 
 | |
| // https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
 | |
| [Exposed=Window]
 | |
| interface SVGScriptElement : SVGElement {
 | |
|     [Reflect] attribute DOMString type;
 | |
|     [Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
 | |
| };
 | |
| 
 | |
| // FIXME: SVGScriptElement includes SVGURIReference;
 |