mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:02:43 +00:00 
			
		
		
		
	 60e35f2a97
			
		
	
	
		60e35f2a97
		
	
	
	
	
		
			
			This provides a rough implementation of the CSS @namespace rule. Currently we just support default namespaces, namespace prefixes are still to come.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSRule.idl>
 | |
| 
 | |
| // https://www.w3.org/TR/cssom/#the-cssnamespacerule-interface
 | |
| [Exposed=Window]
 | |
| interface CSSNamespaceRule : CSSRule {
 | |
|   readonly attribute CSSOMString namespaceURI;
 | |
|   readonly attribute CSSOMString prefix;
 | |
| };
 |