blob: c4018ed47b8ea1f46fee3a5082f4438914921057 [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.
// Represents a rotation value in a CSSTransformValue used for properties like
// "transform".
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssrotation
[
Constructor(CSSNumericValue angleValue),
Constructor(double x, double y, double z, CSSNumericValue angle),
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM,
RaisesException=Constructor
] interface CSSRotation : CSSTransformComponent {
[RaisesException=Setter] attribute CSSNumericValue angle;
attribute double x;
attribute double y;
attribute double z;
};