mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 21:01:00 +00:00 
			
		
		
		
	 a93c6a347f
			
		
	
	
		a93c6a347f
		
	
	
	
	
		
			
			CSSStyleValue is adjusted to allow for subclasses. Serialization for CSSKeywordValue is implemented differently than the spec says because of a spec bug: https://github.com/w3c/csswg-drafts/issues/12545
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSStyleValue.idl>
 | |
| 
 | |
| // https://drafts.css-houdini.org/css-typed-om-1/#csskeywordvalue
 | |
| [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
 | |
| interface CSSKeywordValue : CSSStyleValue {
 | |
|     constructor(USVString value);
 | |
|     attribute USVString value;
 | |
| };
 | |
| 
 | |
| typedef (DOMString or CSSKeywordValue) CSSKeywordish;
 |