Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/line-clamp/line-clamp-auto-002-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: `line-clamp: auto` box containing float after margins should not crash</title>
<link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
<style>
.parent {
line-height: 1.2em;
line-clamp: auto;
max-height: 3lh;
}
.float {
float: left;
}
.margins {
margin-block-start: 1em;
margin-block-end: 1em;
}
</style>
<div class="parent">
<div class="margins">A</div>
<div>
<div class="float"></div>
B
</div>
</div>