blob: 22ec20d651c7cbcc76b0e6b3c324455cd2b565a4 [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.
[
Constructor(double x, double y),
Constructor(double x, double y, double z),
ImplementedAs=ScaleTransformComponent,
RuntimeEnabled=CSSTypedOM
] interface Scale : TransformComponent {
readonly attribute double x;
readonly attribute double y;
readonly attribute double z;
};