ladybird/Libraries/LibWeb/CSS/CSSPerspective.idl

13 lines
436 B
Text
Raw Normal View History

#import <CSS/CSSKeywordValue.idl>
#import <CSS/CSSNumericValue.idl>
#import <CSS/CSSTransformComponent.idl>
typedef (CSSNumericValue or CSSKeywordish) CSSPerspectiveValue;
// https://drafts.css-houdini.org/css-typed-om-1/#cssperspective
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSPerspective : CSSTransformComponent {
constructor(CSSPerspectiveValue length);
attribute CSSPerspectiveValue length;
};