Skip to content
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

Selectors with hyphen combinators parse successfully #38

Closed
ryandabler opened this issue Feb 5, 2024 · 1 comment
Closed

Selectors with hyphen combinators parse successfully #38

ryandabler opened this issue Feb 5, 2024 · 1 comment

Comments

@ryandabler
Copy link

If I have a selector a - b (using a hyphen character as the combinator), the library's parser will successfully parse this into the following AST:

{
    "type": "Selector",
    "rules": [
        {
            "type": "Rule",
            "items": [
                {
                    "type": "TagName",
                    "name": "a"
                }
            ],
            "nestedRule": {
                "type": "Rule",
                "items": [
                    {
                        "type": "TagName",
                        "name": "-"
                    }
                ],
                "nestedRule": {
                    "type": "Rule",
                    "items": [
                        {
                            "type": "TagName",
                            "name": "b"
                        }
                    ]
                }
            }
        }
    ]
}

This is confusing because if I run that same selector in document.querySelector I get the following error message:

Uncaught DOMException: Failed to execute 'querySelector' on 'Document': 'a - b' is not a valid selector.

I would expect the library to attempt to parse - as a combinator instead of a tag name (since - isn't a valid CSS identifier). As a user trying to validate CSS selectors to ensure that they are valid before downstream code tries to execute them in the browser I'd expect that the browser's semantics and the library's would be the same (so that I could not parse this selector).

@mdevils mdevils closed this as completed in 2520a49 Mar 2, 2024
@mdevils
Copy link
Owner

mdevils commented Mar 2, 2024

Hello @ryandabler, thank you for reporting this. Fixed in version 3.0.5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants