ladybird/Tests/LibWeb/Layout/input/tab-size-spacing-001.html
Kostya Farber 2f41be733f LibWeb: Add word spacing to tab size correctly
We should be adding the computed value for word spacing not letter
spacing twice.
2024-10-28 22:53:37 +01:00

34 lines
1,003 B
HTML

<!DOCTYPE html>
<style>
.test {
white-space: pre;
tab-size: 8; /* the initial value, but since we're measuring against it, we might as well be sure */
font-family: monospace; /* because the ch unit is based on the size of the 0 character,
and we want to measure space characters
so they need to be the same size. */
letter-spacing: 2px;
font-size: 13px;
word-spacing: 10px;
}
span {
display: inline-block;
width: 20px;
height: 20px;
background: green;
}
.ref {
position: absolute;
z-index: -1;
width: 20px;
height: 20px;
background: red;
margin-left: calc(8ch + 8 * 2px + 8 * 10px);
/* this is to avoid antialiasing effects at the edge */
box-sizing: border-box;
border: 2px solid white;
}
</style>
<div class="ref"></div>
<div class="test">&#x09;<span></span></div>