blob: 47e72a4cfb249b64cf385c5f2ee4970d16d1a2d0 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Text: 'hyphens: none', hyphen-minus character and line wrapping</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="https://www.w3.org/TR/css-text-3/#hyphenation">
<link rel="match" href="reference/hyphens-auto-010M-ref.html">
<meta content="" name="flags">
<meta content="This test checks that 'hyphens: none' does not suppress line wrapping after encountering an actual hyphen-minus character (U+002D).">
<style>
div
{
border: black solid 2px;
font-family: monospace;
font-size: 32px;
hyphens: none;
width: 6ch;
}
</style>
<div>regu&#x002D;lation imple&#x002D;menta&#x002D;tion now</div>
<!--
Expected result:
regu-
lation
imple-
menta-
tion
-->