forked from mirrors/gecko-dev
		
	Automatic update from web-platform-tests Update interfaces/css-properties-values-api.idl (#19358) Source: https://github.com/tidoust/reffy-reports/blob/490b10f/ed/idl/css-properties-values-api.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/590278372 -- wpt-commits: 10ed331f7d27b0eec3e5125142f1185eba46d00c wpt-pr: 19358
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			824 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			824 B
		
	
	
	
		
			Text
		
	
	
	
	
	
// GENERATED CONTENT - DO NOT EDIT
 | 
						|
// Content was automatically extracted by Reffy into reffy-reports
 | 
						|
// (https://github.com/tidoust/reffy-reports)
 | 
						|
// Source: CSS Properties and Values API Level 1 (https://drafts.css-houdini.org/css-properties-values-api-1/)
 | 
						|
 | 
						|
dictionary PropertyDefinition {
 | 
						|
  required DOMString name;
 | 
						|
           DOMString syntax       = "*";
 | 
						|
  required boolean   inherits;
 | 
						|
           DOMString initialValue;
 | 
						|
};
 | 
						|
 | 
						|
partial namespace CSS {
 | 
						|
  void registerProperty(PropertyDefinition definition);
 | 
						|
};
 | 
						|
 | 
						|
partial interface CSSRule {
 | 
						|
    const unsigned short PROPERTY_RULE = 18;
 | 
						|
};
 | 
						|
 | 
						|
[Exposed=Window]
 | 
						|
interface CSSPropertyRule : CSSRule {
 | 
						|
    readonly attribute CSSOMString name;
 | 
						|
    readonly attribute CSSOMString syntax;
 | 
						|
    readonly attribute boolean inherits;
 | 
						|
    readonly attribute CSSOMString? initialValue;
 | 
						|
};
 |