mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:12:44 +00:00 
			
		
		
		
	 4646a87eba
			
		
	
	
		4646a87eba
		
	
	
	
	
		
			
			Previously @media rule conditions could be updated by assigning to `conditionText`. This change aligns our implementation with the CSSOM specification, which says `CSSConditionRule.conditionText` should be read-only.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSGroupingRule.idl>
 | |
| 
 | |
| // https://drafts.csswg.org/css-conditional-3/#the-cssconditionrule-interface
 | |
| [Exposed=Window]
 | |
| interface CSSConditionRule : CSSGroupingRule {
 | |
|     readonly attribute CSSOMString conditionText;
 | |
| };
 |