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/text-indent/text-indent-dynamic-each-line-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test invalidation of the `hanging` keyword</title>
<link rel="match" href="reference/text-indent-each-line-001-ref.html">
<style>
.target {
border: 1px solid;
width: 8ch;
text-indent: 4ch;
}
.after {
text-indent: 4ch each-line;
}
</style>
<div id="target" class="target">
0000 0000<br>
0000 0000
</div>
<script>
document.body.offsetTop;
target.classList.add('after');
</script>