summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/parsing/word-break-valid.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-text/parsing/word-break-valid.html')
-rw-r--r--testing/web-platform/tests/css/css-text/parsing/word-break-valid.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/parsing/word-break-valid.html b/testing/web-platform/tests/css/css-text/parsing/word-break-valid.html
new file mode 100644
index 0000000000..93c58e8557
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text/parsing/word-break-valid.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>CSS Text Module Test: parsing word-break with valid values</title>
+<link rel="help" href="https://www.w3.org/TR/css-text-3/#propdef-word-break">
+<meta name="assert" content="word-break supports only the grammar 'normal | break-all| keep-all | manual | auto-phrase | break-word'.">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/parsing-testcommon.js"></script>
+</head>
+<body>
+<script>
+test_valid_value("word-break", "normal");
+test_valid_value("word-break", "break-all");
+test_valid_value("word-break", "keep-all");
+test_valid_value("word-break", "manual");
+test_valid_value("word-break", "auto-phrase");
+test_valid_value("word-break", "break-word");
+</script>
+</body>
+</html>