- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathoverflow-wrap-valid.html
19 lines (19 loc) · 672 Bytes
/
overflow-wrap-valid.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<title>CSS Text Module Test: parsing overflow-wrap with valid values</title>
<linkrel="help" href="https://www.w3.org/TR/css-text-3/#propdef-overflow-wrap">
<metaname="assert" content="overflow-wrap supports the full grammar 'normal | break-word | anywhere'.">
<scriptsrc="/resources/testharness.js"></script>
<scriptsrc="/resources/testharnessreport.js"></script>
<scriptsrc="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("overflow-wrap","normal");
test_valid_value("overflow-wrap","break-word");
test_valid_value("overflow-wrap","anywhere");
</script>
</body>
</html>