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/crashtests/text-decoration-first-line-child-display-none-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
.c16:first-line { text-decoration: underline; }
</style>
<div class="c16">
<div id="e31"></div>
<div class="c4" style="text-decoration:overline;">
<span style="text-decoration:line-through;">x</span>
</div>
</div>
<script>
document.documentElement.offsetTop;
e31.style.display = "none";
</script>