blob: e39cfdaa5d5718e57077872b6707b07828a4bb18 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
Constructor(sequence<CSSTransformComponent> transforms),
RaisesException=Constructor,
Exposed(Window CSSTypedOM, PaintWorklet CSSTypedOM)
] interface CSSTransformValue : CSSStyleValue {
// https://github.com/w3c/css-houdini-drafts/issues/358
readonly attribute unsigned long length;
[ImplementedAs=componentAtIndex] getter CSSTransformComponent (unsigned long index);
iterable<CSSTransformComponent>;
readonly attribute boolean is2D;
[RaisesException, RuntimeEnabled=GeometryInterfaces] DOMMatrix toMatrix();
};