blob: 7a81cdb862b1460deb59a38bf0c205ecf5be2d2a [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(double angle),
Constructor(double angle, double x, double y, double z),
ImplementedAs=RotationTransformComponent,
RuntimeEnabled=CSSTypedOM
] interface Rotation : TransformComponent {
readonly attribute double angle;
readonly attribute double x;
readonly attribute double y;
readonly attribute double z;
};