mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:22:44 +00:00 
			
		
		
		
	 b66f65dc9e
			
		
	
	
		b66f65dc9e
		
	
	
	
	
		
			
			This fixes regression introduced in
c03e025a32 by assuming that it is
possible to determine whether identifier stands for line or area
during parsing.
		
	
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			326 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			326 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
|     * {
 | |
|         border: 1px solid black;
 | |
|     }
 | |
| 
 | |
|     .grid-container {
 | |
|         display: grid;
 | |
|         grid-template-columns: repeat(2, [name1] 50px [name2] 100px);
 | |
|     }
 | |
| 
 | |
|     .a {
 | |
|         grid-column-start: name2
 | |
|     }
 | |
| </style><div class="grid-container"><div class="a">1</div><div>2</div><div>3</div><div>4</div></div> |