Ivailo Hristov
Ivailo Hristov
@bezoerb You mentioned you plan to rewrite critical. It would be great if we had a critical daemon which keeps an open browser instance so we don't have to spawn...
Simple expressions do not seem to be parsed. Example: ```CSS div { height: (vh - 10); } ``` This ends up being treated as: ```CSS div {} ```
Pseudo classes cannot have a space after the `:` sign. We should consider such occurrences invalid.
Builds on top of #169
Fixes #388 Builds on top of #390
In CSS Level 4 `rgba()` and `hsla()` are aliases for `rgb()` and `hsl()` which now accept the alpha argument. This PR reflects this behavior and makes the parser understand the...
Often times font definitions include escaped quotes. Currently these are not parsed correctly. This PR resolves this.