diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/hyphens/hyphenate-character-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/hyphens/hyphenate-character-002.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/hyphens/hyphenate-character-002.html b/testing/web-platform/tests/css/css-text/hyphens/hyphenate-character-002.html new file mode 100644 index 0000000000..07376fc6b2 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/hyphens/hyphenate-character-002.html @@ -0,0 +1,25 @@ +<!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: auto; /* assuming the usual en_US patterns, should generate the same breaks as the manual + soft hyphens in test 001. */ + 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"> +implementation<br><br> +initialization<br><br> +realization<br><br> +hyphenation +</div> |