mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
LibHTML: Move selector matching into a SelectorEngine namespace
This commit is contained in:
parent
06b6af61c6
commit
19dbfc3153
4 changed files with 78 additions and 59 deletions
11
Libraries/LibHTML/CSS/SelectorEngine.h
Normal file
11
Libraries/LibHTML/CSS/SelectorEngine.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibHTML/CSS/Selector.h>
|
||||
|
||||
class Element;
|
||||
|
||||
namespace SelectorEngine {
|
||||
|
||||
bool matches(const Selector&, const Element&);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue