Skip to content

Commit b6d75a0

Browse files
committed
Follow changes in WD-css-align-3-20170215
See also: http://www.w3.org/TR/2017/WD-css-align-3-20170215/
1 parent 796c321 commit b6d75a0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

after/syntax/css/css-align-3.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
syn match cssFontProp contained "\<\(justify\|align\)-\(self\|content\|items\)\>"
1+
syn match cssFontProp contained "\<\(justify\|align\|place\)-\(self\|content\|items\)\>"
22
syn keyword cssFontAttr contained safe unsafe legacy
33
syn match cssFontAttr contained "\<\(self\|flex\)-\(start\|end\)\>"
44
syn match cssFontAttr contained "\<space-\(between\|around\|evenly\)\>"

test/test.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
align-self: self-end;
66
align-content: flex-start;
77
align-items: flex-end;
8-
display: space-around;
9-
display: space-between;
10-
display: space-evenly;
8+
place-self: space-around;
9+
place-content: space-between;
10+
place-items: space-evenly;
1111
display: legacy;
1212
}
1313

test/test.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
align-self: self-end;
1616
align-content: flex-start;
1717
align-items: flex-end;
18-
display: space-around;
19-
display: space-between;
20-
display: space-evenly;
18+
place-self: space-around;
19+
place-content: space-between;
20+
place-items: space-evenly;
2121
display: legacy;
2222
}
2323
</style>

0 commit comments

Comments
 (0)