mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
12 lines
428 B
Plaintext
12 lines
428 B
Plaintext
#import <CSS/CSSNumericValue.idl>
|
|
#import <CSS/CSSTransformComponent.idl>
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#csstranslate
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
interface CSSTranslate : CSSTransformComponent {
|
|
constructor(CSSNumericValue x, CSSNumericValue y, optional CSSNumericValue z);
|
|
attribute CSSNumericValue x;
|
|
attribute CSSNumericValue y;
|
|
attribute CSSNumericValue z;
|
|
};
|