mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:07:35 +00:00
LibWeb: Add the CSSStyleRule interface with some limited functionality
This commit is contained in:
parent
71087422f6
commit
6cda24097b
8 changed files with 84 additions and 1 deletions
16
Userland/Libraries/LibWeb/Bindings/CSSRuleWrapperFactory.h
Normal file
16
Userland/Libraries/LibWeb/Bindings/CSSRuleWrapperFactory.h
Normal 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&);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue