File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33* Fix the URL for the ` @-moz-document ` deprecation message.
44
5+ * Fix a bug with ` @for ` loops nested inside property declarations.
6+
57## 1.34.0
68
79* Don't emit the same warning in the same location multiple times.
4648* [ ` :is() ` ] [ ] now behaves identically to ` :matches() ` .
4749
4850[ `:is()` ] : https://developer.mozilla.org/en-US/docs/Web/CSS/:is
49-
51+
5052* Fix a bug where non-integer numbers that were very close to integer
5153 values would be incorrectly formatted in CSS.
5254
Original file line number Diff line number Diff line change @@ -681,7 +681,7 @@ abstract class StylesheetParser extends Parser {
681681 case "error" :
682682 return _errorRule (start);
683683 case "for" :
684- return _forRule (start, _declarationAtRule );
684+ return _forRule (start, _declarationChild );
685685 case "if" :
686686 return _ifRule (start, _declarationChild);
687687 case "include" :
You can’t perform that action at this time.
0 commit comments