1
0
Fork 0
firefox/testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-multiline-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

18 lines
395 B
HTML

<!DOCTYPE html>
<title>Test multiline ellipsis with `::first-line`</title>
<link rel="match" href="reference/text-overflow-ellipsis-multiline-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#ellipsing-details">
<style>
div {
width: 6ch;
overflow: hidden;
text-overflow: ellipsis;
}
div::first-line {
color: orange;
}
</style>
<div>
1234567<br>
1234567
</div>