mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-15 04:29:27 +00:00
This is a base type for the various transform functions. CSSMatrixComponent's to_string() can throw exceptions, so to_string() is implemented that way. https://github.com/w3c/fxtf-drafts/issues/611 +9 WPT subtests.
9 lines
292 B
Text
9 lines
292 B
Text
#import <Geometry/DOMMatrix.idl>
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#csstransformcomponent
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
interface CSSTransformComponent {
|
|
stringifier;
|
|
[ImplementedAs=is_2d] attribute boolean is2D;
|
|
DOMMatrix toMatrix();
|
|
};
|