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/webkit-line-clamp-abspos-001.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>line-clamping perhaps shouldn't prevent abspos content from painting</title>
<link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<style>
.line-clamp {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
position: relative;
overflow: hidden;
height: 100px;
width: 100px;
}
.abspos {
position: absolute;
top: 0;
left: 0;
height: 100px;
width: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="line-clamp">
FAIL<br>
FAIL<br>
FAIL<br>
<div class="abspos"></div>
</div>