1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/text-box-trim/text-box-trim-on-button.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

30 lines
743 B
HTML

<!DOCTYPE html>
<title>Test that text-box-trim works on button</title>
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim">
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-edge">
<link rel="match" href="text-box-trim-on-button-ref.html">
<style>
@import "support/MetricsTestFont.css";
.spacer {
background: lightgray;
block-size: 100px;
}
.target {
font: 100px/2 MetricsTestFont;
text-box-trim: trim-both;
text-box-edge: ex alphabetic;
appearance: none;
border: none;
padding: 0px;
margin: 0px;
background-color: transparent;
color: black;
}
</style>
<div class="spacer"></div>
<div class="target">
<button class=target>ApÉx</button>
</div>
<div class="spacer"></div>