Skip to content

Commit d066e83

Browse files
committed
1 parent cb6f429 commit d066e83

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

after/syntax/css/conditional-5.vim

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
syn keyword cssFontProp contained container-type container-name container
2+
syn keyword cssFontAttr contained inline-size
13
syn match cssFontDescriptor "@\(when\|else\)\>" nextgroup=cssFontDescriptorBlock skipwhite skipnl

test/test.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@
198198
}
199199

200200
@supports (display: auto) or
201-
(display: auto) not
202-
(display: auto) {
201+
(display: auto) not
202+
(display: auto) {
203203
.conditional-3 {
204204
display: auto;
205205
}
@@ -213,7 +213,10 @@
213213

214214
@when media(screen) {
215215
.conditional-5 {
216-
display: auto;
216+
container-type: auto;
217+
container-name: auto;
218+
container: auto;
219+
display: inline-size;
217220
}
218221
} @else {
219222
.conditional-5 {

0 commit comments

Comments
 (0)