ladybird/Userland/Libraries/LibWeb/CSS/SelectorEngine.h

16 lines
290 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/CSS/Selector.h>
#include <LibWeb/DOM/Element.h>
namespace Web::SelectorEngine {
bool matches(CSS::Selector const&, DOM::Element const&);
}