blob: 44d2721ee3c090d098bd0d1850a387fbc5d7245d [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 scale value in a CSSTransformValue used for properties like
// "transform".
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssscale
[
Constructor(double x, double y),
Constructor(double x, double y, double z),
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
] interface CSSScale : CSSTransformComponent {
attribute double x;
attribute double y;
attribute double z;
};