| .abspos { position: absolute; background-color: pink; } |
| .gray { background-color: lightgray; padding: 1px; } |
| Absolutely positioned element as a child of a flexbox with hasLineIfEmpty()=true. |
| Such a flex box should get a line instead of collapsing to just border+padding. |
| In other words, the grey area should be (slightly) taller than the pink one.<br> |
| <div class="gray" contenteditable="true"><div class="abspos">Content</div></div> |
| ...but if it does specify a height, we need to respect it.<br> |
| <div class="small gray" contenteditable="true"><div class="abspos">Content</div></div> |