Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-inline/model/phantom-line-boxes-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Inline Layout Model: Phantom Line Boxes</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="match" href="../../reference/ref-filled-green-200px-square.html">
<meta name="assert" content="Non-zero inline-axis margins, padding, or borders
prevent a line box from becoming a phantom line box, and therefore prevent
the inline formatting context from collapsing margins through.
This test checks non-zero borders.">
<style>
.wrapper {
float: left;
width: 50px;
background: red;
}
.wrapper.phantom {
background: green;
}
.wrapper > div {
line-height: 0;
background: green;
}
.wrapper.phantom > div {
background: red
}
.wrapper > div::after {
content: "";
display: flow-root;
margin-top: 200px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="wrapper phantom">
<div><span style="border-top: 1px solid transparent"></span></div>
</div>
<div class="wrapper phantom">
<div><span style="border-bottom: 1px solid transparent"></span></div>
</div>
<div class="wrapper">
<div><span style="border-left: 1px solid transparent"></span></div>
</div>
<div class="wrapper">
<div><span style="border-right: 1px solid transparent"></span></div>
</div>