SelectorEngine.h 143 B

1234567891011
  1. #pragma once
  2. #include <LibHTML/CSS/Selector.h>
  3. class Element;
  4. namespace SelectorEngine {
  5. bool matches(const Selector&, const Element&);
  6. }