update newly passing tests

This commit is contained in:
Connor Skees 2020-08-12 16:27:16 -04:00
parent 2d798a6386
commit 46ecbfffe5
3 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# TBD # 0.10.1
- **implement `@use` and the module system** - **implement `@use` and the module system**
- support the filter syntax for function arguments, e.g. `alpha(opacity=1)` - support the filter syntax for function arguments, e.g. `alpha(opacity=1)`
@ -10,6 +10,11 @@
- allow escaped `!` in selectors - allow escaped `!` in selectors
- allow multiline comments in functions - allow multiline comments in functions
- resolve several panics on malformed input when parsing bracketed lists - resolve several panics on malformed input when parsing bracketed lists
- support NaN in all contexts
- add support for unicode ranges
- recognize plain CSS imports beginning with `//`, e.g. `@import "//fonts.googleapis.com/css?family=Droid+Sans";`
- resolve integer overflows in `@for` when bounds were equal to `isize::MIN` and `isize::MAX`
- allow quoted strings in default function arguments
# 0.10.0 # 0.10.0

View File

@ -78,9 +78,9 @@ cargo b --release
These numbers come from a default run of the Sass specification as shown above. These numbers come from a default run of the Sass specification as shown above.
``` ```
2020-08-07 2020-08-12
PASSING: 3375 PASSING: 3387
FAILING: 1718 FAILING: 1706
TOTAL: 5093 TOTAL: 5093
``` ```

View File

@ -1,11 +1,11 @@
/*! # grass /*! # grass
An implementation of the Sass specification in pure rust. An implementation of the Sass specification in pure rust.
Spec progress as of 2020-08-07: Spec progress as of 2020-08-12:
| Passing | Failing | Total | | Passing | Failing | Total |
|---------|---------|-------| |---------|---------|-------|
| 3375 | 1718 | 5093 | | 3387 | 1706 | 5093 |
## Use as library ## Use as library
``` ```