mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-26 20:26:53 +00:00
LibWeb/CSS: Expose a couple of types on PaintWorklet and LayoutWorklet
This has no actual effect, but it's nice to remove the FIXMEs.
This commit is contained in:
parent
6be9f0757f
commit
888cb038e8
Notes:
github-actions[bot]
2025-08-15 07:22:28 +00:00
Author: https://github.com/AtkinsSJ
Commit: 888cb038e8
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5853
Reviewed-by: https://github.com/gmta ✅
2 changed files with 2 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
// https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue
|
||||
// FIXME: [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||||
[Exposed=(Window, Worker)]
|
||||
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||||
interface CSSStyleValue {
|
||||
stringifier;
|
||||
[FIXME, Exposed=Window] static CSSStyleValue parse(USVString property, USVString cssText);
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
#import <CSS/CSSStyleValue.idl>
|
||||
|
||||
// https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymapreadonly
|
||||
// FIXME: [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||||
[Exposed=(Window, Worker)]
|
||||
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||||
interface StylePropertyMapReadOnly {
|
||||
// FIXME: iterable<USVString, sequence<CSSStyleValue>>;
|
||||
(undefined or CSSStyleValue) get(USVString property);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue