blob: 8aed33f0326710178ed2237d3bb32f849cb02199 [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 skew value in a CSSTransformValue used for properties like
// "transform".
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssskew
[
Constructor(CSSNumericValue ax, CSSNumericValue ay),
Exposed=(Window,LayoutWorklet,PaintWorklet),
RaisesException=Constructor
] interface CSSSkew : CSSTransformComponent {
[RaisesException=Setter] attribute CSSNumericValue ax;
[RaisesException=Setter] attribute CSSNumericValue ay;
};