mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 12:24:58 +00:00
11 lines
143 B
C++
11 lines
143 B
C++
#pragma once
|
|
|
|
#include <LibHTML/CSS/Selector.h>
|
|
|
|
class Element;
|
|
|
|
namespace SelectorEngine {
|
|
|
|
bool matches(const Selector&, const Element&);
|
|
|
|
}
|