Skip to content

Commit 37522bc

Browse files
committed
Reserve revert-layer keyword in custom ident
1 parent e305244 commit 37522bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/values/ident.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ impl<'i> Parse<'i> for CustomIdent<'i> {
1414
let location = input.current_source_location();
1515
let ident = input.expect_ident()?;
1616
let valid = match_ignore_ascii_case! { &ident,
17-
"initial" | "inherit" | "unset" | "default" | "revert" => false,
17+
"initial" | "inherit" | "unset" | "default" | "revert" | "revert-layer" => false,
1818
_ => true
1919
};
2020

0 commit comments

Comments
 (0)