chromium/third_party/blink/renderer/core/css/cssom/css_scale.idl

// Copyright 2016 The Chromium Authors
// 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
[
    Exposed=(Window,LayoutWorklet,PaintWorklet)
] interface CSSScale : CSSTransformComponent {
    [RaisesException] constructor(CSSNumberish x, CSSNumberish y, optional CSSNumberish z);
    [RaisesException=Setter] attribute CSSNumberish x;
    [RaisesException=Setter] attribute CSSNumberish y;
    [RaisesException=Setter] attribute CSSNumberish z;
};