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