mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-15 12:39:13 +00:00
13 lines
495 B
Text
13 lines
495 B
Text
#import <CSS/CSSNumericValue.idl>
|
|
#import <CSS/CSSTransformComponent.idl>
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssrotate
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
interface CSSRotate : CSSTransformComponent {
|
|
constructor(CSSNumericValue angle);
|
|
constructor(CSSNumberish x, CSSNumberish y, CSSNumberish z, CSSNumericValue angle);
|
|
attribute CSSNumberish x;
|
|
attribute CSSNumberish y;
|
|
attribute CSSNumberish z;
|
|
attribute CSSNumericValue angle;
|
|
};
|