blob: cad4f6e3e852d12a26707ca387ce7f24b635b1ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text test: hyphenate-character</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#hyphenate-character">
<link rel="match" href="reference/hyphenate-character-001-ref.html">
<meta name="assert" content="Specifies the string that appears at the end of the line before a hyphenation break">
<style>
div {
font: 16px monospace;
width: 4.5ch; /* wide enough that the first potential break in "re-al-iza-tion" should NOT be used */
hyphens: manual;
hyphenate-character: "";
}
</style>
<p>Test passes if the words below are broken at hyphenation positions but <b>no visible hyphens appear</b>.
<div lang="en">
im­ple­men­ta­tion<br><br>
ini­tial­iza­tion<br><br>
re­al­iza­tion<br><br>
hy­phen­ation
</div>
|