 5ad60caa3c
			
		
	
	5ad60caa3c
	
	
	
		
			
			The font-stretch CSS property is defined in the Level 3 CSS Fonts module, available at: http://dev.w3.org/csswg/css-fonts/#propdef-font-stretch It allows defining a normal, condensed, or expanded face to the font description. Pango already supports it, so this is literally just the CSS parser machinery needed to bridge our CSS to the FontDescription API. https://bugzilla.gnome.org/show_bug.cgi?id=735593
		
			
				
	
	
		
			33 lines
		
	
	
		
			867 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			867 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| * {
 | |
|   border-bottom-color: initial;
 | |
|   border-bottom-left-radius: initial;
 | |
|   border-bottom-right-radius: initial;
 | |
|   border-bottom-width: initial;
 | |
|   border-image-repeat: initial;
 | |
|   border-image-slice: initial;
 | |
|   border-image-source: initial;
 | |
|   border-image-width: initial;
 | |
|   border-left-color: initial;
 | |
|   border-left-width: initial;
 | |
|   border-right-color: initial;
 | |
|   border-right-width: initial;
 | |
|   border-top-color: initial;
 | |
|   border-top-left-radius: initial;
 | |
|   border-top-right-radius: initial;
 | |
|   border-top-width: initial;
 | |
|   font-family: initial;
 | |
|   font-size: initial;
 | |
|   font-stretch: initial;
 | |
|   font-style: initial;
 | |
|   font-variant: initial;
 | |
|   font-weight: initial;
 | |
|   margin-bottom: initial;
 | |
|   margin-left: initial;
 | |
|   margin-right: initial;
 | |
|   margin-top: initial;
 | |
|   padding-bottom: initial;
 | |
|   padding-left: initial;
 | |
|   padding-right: initial;
 | |
|   padding-top: initial;
 | |
| }
 |