summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/cssom/css_skew_x.idl
blob: 56c29e620675a13099e0a39d60500d29218f28cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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
[
    Constructor(CSSNumericValue ax),
    RuntimeEnabled=CSSTypedOM,
    Exposed=(Window, Worker, PaintWorklet, LayoutWorklet),
    RaisesException=Constructor]
interface CSSSkewX : CSSTransformComponent {
    [RaisesException=Setter] attribute CSSNumericValue ax;
};