-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathflex-flow-valid.html
24 lines (24 loc) · 1011 Bytes
/
flex-flow-valid.html
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>
<html>
<head>
<meta charset="utf-8">
<title>CSS Flexible Box Layout Module Level 1: parsing flex-flow with valid values</title>
<link rel="author" title="Eric Willigers" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-flex-flow">
<meta name="assert" content="flex-flow supports the full grammar '<flex-direction> || <flex-wrap>'.">
<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("flex-flow", "column nowrap", "column");
test_valid_value("flex-flow", "nowrap column", "column");
test_valid_value("flex-flow", "wrap row-reverse", "row-reverse wrap");
test_valid_value("flex-flow", "nowrap", "row");
test_valid_value("flex-flow", "row nowrap", "row");
test_valid_value("flex-flow", "wrap", "wrap");
test_valid_value("flex-flow", "row wrap", "wrap");
</script>
</body>
</html>