1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/text-box-trim/text-box-trim-accumulation-001.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<title>Test choosing the correct text-box-edge value for requested trim metric</title>
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-edge">
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim">
<meta name="assert"
content="text-box-edge is an inherited property and trim metric should be used accordingly."
> <!-- https://github.com/w3c/csswg-drafts/issues/10904 -->
<link rel="match" href="text-box-trim-accumulation-001-ref.html">
<style>
@import "support/MetricsTestFont.css";
.spacer {
block-size: 100px;
background: lightgray;
}
.inner {
font: 100px/2 MetricsTestFont;
}
.outer {
text-box-trim: trim-start;
text-box-edge: auto;
}
.middle {
text-box-trim: trim-end;
text-box-edge: text alphabetic;
}
.inner:first-child {
text-box-edge: ex alphabetic;
}
.inner:last-child {
text-box-edge: text;
}
</style>
<div class="spacer"></div>
<div class="outer">
<div class="middle">
<div class="inner">ApÉx</div>
<div class="spacer"></div>
<div class="inner">ApÉx</div>
</div>
</div>
<div class="spacer"></div>