mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:32:45 +00:00 
			
		
		
		
	 f0a4baabc7
			
		
	
	
		f0a4baabc7
		
	
	
	
	
		
			
			This adds initial support for `open-quote`, `close-quote`, `no-open-quote` and `no-close-quote`. We don't yet track the "nesting level" so we always use the first pair of quotes from the `quotes` property.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <link rel="match" href="reference/css-quotes-ref.html" />
 | |
| <style>
 | |
|     div::before {
 | |
|         content: open-quote "Well, hello friends!" close-quote;
 | |
|     }
 | |
|     .a {
 | |
|         quotes: none;
 | |
|     }
 | |
|     .b {
 | |
|         quotes: auto;
 | |
|     }
 | |
|     .c {
 | |
|         quotes: "/* " " */";
 | |
|     }
 | |
| </style>
 | |
| <div class="a"></div>
 | |
| <div class="b"></div>
 | |
| <div class="c"></div>
 |