We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cead630 commit 70744b0Copy full SHA for 70744b0
org/w3c/css/parser/analyzer/CssParser.jj
@@ -3517,6 +3517,11 @@ CssCheckableValue mathproduct() :
3517
c.markCssVariable();
3518
}
3519
3520
+ | v2=functionenv() {
3521
+ if (v2.getType() == CssTypes.CSS_ENV) {
3522
+ c.markCssVariable();
3523
+ }
3524
3525
)
3526
3527
) {
@@ -3628,6 +3633,7 @@ char operator = ' ';
3628
3633
| v=mathclamp()
3629
3634
| v=attr()
3630
3635
| v=functionvar()
3636
+ | v=functionenv()
3631
3637
3632
3638
return v;
3639
0 commit comments