summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html')
-rw-r--r--testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html b/testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html
new file mode 100644
index 0000000000..273f060d87
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text/hyphens/hyphens-auto-last-word-001.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<title>CSS Text: `hyphens: auto` for last word</title>
+<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
+<link rel="help" href="https://www.w3.org/TR/css-text-3/#hyphenation">
+<link rel="match" href="reference/hyphens-auto-last-word-001-ref.html">
+<link rel="match" href="reference/hyphens-auto-last-word-001-ref2.html">
+<style>
+div {
+ hyphens: auto;
+ width: 5ch;
+ border: 1px solid blue;
+}
+</style>
+<body lang="en-us">
+ <div style="width: 10ch">Test example</div>
+ <div>example</div>
+ <div>1 example</div>
+ <div>1234 example</div>
+ <div>example 5678</div>
+ <div>1234 example 5678</div>
+</body>