mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-02 06:10:58 +00:00
13 lines
436 B
Text
13 lines
436 B
Text
|
|
#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;
|
||
|
|
};
|