1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 12:24:58 +00:00
serenity/Libraries/LibHTML/CSS/SelectorEngine.h

11 lines
143 B
C++

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