mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
11 lines
361 B
Text
11 lines
361 B
Text
![]() |
#import <CSS/CSSNumericValue.idl>
|
||
|
#import <CSS/CSSTransformComponent.idl>
|
||
|
|
||
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssskew
|
||
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||
|
interface CSSSkew : CSSTransformComponent {
|
||
|
constructor(CSSNumericValue ax, CSSNumericValue ay);
|
||
|
attribute CSSNumericValue ax;
|
||
|
attribute CSSNumericValue ay;
|
||
|
};
|