Per [the `@supports` spec](https://www.w3.org/TR/2013/CR-css3-conditional-20130404/#at-supports) (and also the [more recent version](https://drafts.csswg.org/css-conditional-3/#at-supports)), a condition should only have one of `and` or `or` specified at the top-level. In particular: ```scss @supports (a: b) and (c: d) or (e: f) { // ... } ``` should be an error. However, in LibSass, it is not.