1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

LibWeb: Convert CSS Dump, Selector, & SelectorEngine to east const

This commit is contained in:
Sam Atkins 2021-07-12 14:13:29 +01:00 committed by Andreas Kling
parent cd55b817cf
commit dadcb46344
6 changed files with 57 additions and 57 deletions

View file

@ -11,6 +11,6 @@
namespace Web::SelectorEngine {
bool matches(const CSS::Selector&, const DOM::Element&);
bool matches(CSS::Selector const&, DOM::Element const&);
}