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

LibHTML: Move selector matching into a SelectorEngine namespace

This commit is contained in:
Andreas Kling 2019-10-08 15:33:58 +02:00
parent 06b6af61c6
commit 19dbfc3153
4 changed files with 78 additions and 59 deletions

View file

@ -0,0 +1,11 @@
#pragma once
#include <LibHTML/CSS/Selector.h>
class Element;
namespace SelectorEngine {
bool matches(const Selector&, const Element&);
}