mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb/CSS: Parse an ident in :dir(), not a keyword
The spec requires us to accept any ident here, not just ltr/rtl, and also serialize it back out. That means we need to keep the original string around. In order to not call keyword_from_string() every time we want to match a :dir() selector, we still attempt to parse the keyword and keep it around. A small behaviour change is that now we'll serialize the ident with its original casing, instead of always lowercase. Chrome and Firefox disagree on this, so I think either is fine until that can be officially decided. Gets us 2 WPT passes (including 1 from the as-yet-unmerged :dir() test).
This commit is contained in:
parent
7aed541ed0
commit
8536e23674
Notes:
github-actions[bot]
2025-05-16 22:31:53 +00:00
Author: https://github.com/AtkinsSJ
Commit: 8536e23674
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4780
7 changed files with 25 additions and 21 deletions
|
@ -582,7 +582,7 @@ void dump_selector(StringBuilder& builder, CSS::Selector const& selector, int in
|
|||
break;
|
||||
}
|
||||
case CSS::PseudoClassMetadata::ParameterType::Ident:
|
||||
builder.appendff("(keyword={})", string_from_keyword(pseudo_class.keyword.value()));
|
||||
builder.appendff("(ident={})", pseudo_class.ident->string_value);
|
||||
break;
|
||||
case CSS::PseudoClassMetadata::ParameterType::LanguageRanges: {
|
||||
builder.append('(');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue