-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for nested selectors #1170
Comments
Thanks for reporting this! This seems to be a missing feature. I've tagged and renamed this issue accordingly. |
This shouldn't be too tricky to implement. These are my initial thoughts:
@oliverklee, @sabberworm, WDYT? |
Though |
|
I like that. (And it should definitely be an interface, not a class.)
I consider boolean parameters that change the general way a method works an anti-pattern. Instead, I propose we add a second, well-named method. |
I think |
This is the code smell/antipattern I was referring to: https://luzkan.github.io/smells/flag-argument |
Actually, this isn't going to work like that (at all easily). Instead I think |
Actually the order can matter, in this contrived example using the universal selector: body,
body * {
* {
color: red;
}
color: green;
} Child elements of This is further complicated by the fact that the nested items don't have to be simple declaration blocks. Some at-rules are allowed. One approach might be to change |
Maybe we might put this on the back-burner and tackle this after a rewrite. |
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
I'd prefer to get this in sooner, with more minimal refactoring, since it's already part of the spec, then tackle #1189 for 10.0. I've added #1194 for the first part, so you can see what's invovled. This involves some very-slightly breaking changes which you can see from the changes to the tests, so it perhaps can't be backported (though users should perhaps first check that the The slight downside of using delegation is that Regarding the ordering issue, I think we can live with the edge case with the universal selector. It's the only one I can think of and not likely to occur in the real world. Reason being, is that after manipulation, the |
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
We should look into the spec to see what we should do to distinguish properties from selectors. Rolling our own heuristic has never once worked out well. |
These are the specs explaining the algorithms: https://www.w3.org/TR/css-syntax-3/ |
I've picked out what seems to be relevant:
The leads to
I think this is out-of-date, since nested style blocks no longer need to be prefaced with Also note that There's also
This is along the lines I was originally suggesting: if it looks like a duck... |
This doesn't seem to deal with the ordering issue either. |
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
... rather than inheritance. This will allow `DeclarationBlock` to instead extend `CSSBlockList` in order to support [CSS nesting](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting). This is a slightly-breaking change, since now `CSSBlockList::getAllRuleSets()` will include the `RuleSet` property of the `DeclarationBlock` instead of the `DeclarationBlock` itself. Part of #1170.
When I parse a CSS with nested selector, the rendered CSS bugs
Example :
How can we prevent this?
Thanks
The text was updated successfully, but these errors were encountered: