LibWeb: Add the CSSStyleRule interface with some limited functionality

This commit is contained in:
Andreas Kling 2021-09-29 23:43:18 +02:00
commit 6cda24097b
Notes: sideshowbarker 2024-07-18 03:19:45 +09:00
8 changed files with 84 additions and 1 deletions

View file

@ -0,0 +1,16 @@
/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Forward.h>
#include <LibWeb/Forward.h>
namespace Web::Bindings {
CSSRuleWrapper* wrap(JS::GlobalObject&, CSS::CSSRule&);
}