mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:42:43 +00:00 
			
		
		
		
	 f154446a9f
			
		
	
	
		f154446a9f
		
	
	
	
	
		
			
			With multi-line text cells, we don't reliably know the height would stay the same as the one set by the independent format context run. In such situations, we can end up with a table box which is sized inconsistently with the grid boxes of the table due to differences in line breaks.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			190 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			190 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| 	table {
 | |
| 		border: 1px solid black;
 | |
| 	}
 | |
| 
 | |
| 	td {
 | |
| 		border: 1px solid blue;
 | |
| 	}
 | |
| </style>
 | |
| 
 | |
| <table style="width: 10px;">
 | |
| 	<tr><td>*</td></tr>
 | |
| 	<tr><td>********* ***** **</td></tr>
 | |
| </table>
 |