blob: eea0517cc416d2c0a184fee8684aac49a5d1f4da [file] [log] [blame]
// Copyright 2018 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 skewX value in a CSSTransformValue used for properties like
// "transform".
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssskewy
[
Constructor(CSSNumericValue ay),
Exposed=(Window, Worker, PaintWorklet, LayoutWorklet),
RaisesException=Constructor]
interface CSSSkewY : CSSTransformComponent {
[RaisesException=Setter] attribute CSSNumericValue ay;
};