blob: 983bdf8e3130fa84a1182e48e03f0d9c7bd38781 [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),
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
] interface CSSRotation : TransformComponent {
readonly attribute double angle;
readonly attribute double x;
readonly attribute double y;
readonly attribute double z;
};