mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 18:17:23 +00:00
LibWeb: Add and implement CSSPropertyRule
IDL and bindings
This commit is contained in:
parent
648fac7215
commit
50d64b0fb7
Notes:
github-actions[bot]
2024-10-23 05:56:46 +00:00
Author: https://github.com/a-ungurianu 🔰
Commit: 50d64b0fb7
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1777
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/AtkinsSJ ✅
15 changed files with 160 additions and 1 deletions
11
Userland/Libraries/LibWeb/CSS/CSSPropertyRule.idl
Normal file
11
Userland/Libraries/LibWeb/CSS/CSSPropertyRule.idl
Normal file
|
@ -0,0 +1,11 @@
|
|||
#import <CSS/CSSRule.idl>
|
||||
|
||||
// https://drafts.css-houdini.org/css-properties-values-api/#the-css-property-rule-interface
|
||||
[Exposed=Window]
|
||||
interface CSSPropertyRule : CSSRule {
|
||||
readonly attribute CSSOMString name;
|
||||
readonly attribute CSSOMString syntax;
|
||||
readonly attribute boolean inherits;
|
||||
readonly attribute CSSOMString? initialValue;
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue