Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text-decor/text-decoration-propagation-display-contents-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Decoration: line decorations and display: contents + float</title>
<link rel="match" href="/css/reference/pass_if_filler_text_underlined.html">
<!-- The ancestor box's underline must propagate through the boxless wrapper to the inner box. -->
<style>
#outer {
text-decoration: underline;
}
#contents {
display: contents;
float: left;
}
#contents::before {
content: "Filler Text";
}
</style>
<p>Test passes if the "Filler Text" below has a line under it.</p>
<div id="outer">
<div id="contents"></div>
</div>