1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-12 17:41:00 +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&);
}