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/overflow-wrap/overflow-wrap-anywhere-span-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Text Test: overflow-wrap: anywhere</title>
<link rel="author" title="Koji Ishii" href="kojii@chromium.org">
<meta name="assert" content="Test when the `anywhere` value is applied to an inline element.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script><style>
div {
font-size: 10px;
line-height: 1;
width: 5ch;
}
span {
word-wrap: anywhere;
}
</style>
<div id=container data-expected-height=20>12345678<span>90</span></div>
<script>
checkLayout('#container')
</script>