mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 15:40:28 +00:00
LibWeb/CSS: Make :heading() pseudo-class take integers not AN+B
Corresponds to 8eb3787e34
This commit is contained in:
parent
9ffc15ba3f
commit
d461e96f40
Notes:
github-actions[bot]
2025-08-28 10:41:31 +00:00
Author: https://github.com/AtkinsSJ
Commit: d461e96f40
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6009
Reviewed-by: https://github.com/gmta ✅
10 changed files with 79 additions and 161 deletions
|
@ -598,6 +598,12 @@ void dump_selector(StringBuilder& builder, CSS::Selector const& selector, int in
|
|||
builder.append(')');
|
||||
break;
|
||||
}
|
||||
case CSS::PseudoClassMetadata::ParameterType::LevelList: {
|
||||
builder.append('(');
|
||||
builder.join(',', pseudo_class.levels);
|
||||
builder.append(')');
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue