blob: a342b898bafd422e1035bcc4b8651ef436b24c49 [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/#cssskewx
[
Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)
] interface CSSSkewX : CSSTransformComponent {
[RaisesException] constructor(CSSNumericValue ax);
[RaisesException=Setter] attribute CSSNumericValue ax;
};