These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
8 lines
327 B
Text
8 lines
327 B
Text
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;
|
|
};
|