blob: 464b7cd2c5324448299993cb82a7f22e806ee5fa [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(LengthValue x, LengthValue y),
Constructor(LengthValue x, LengthValue y, LengthValue z),
ImplementedAs=TranslationTransformComponent,
RaisesException=Constructor,
RuntimeEnabled=CSSTypedOM
] interface Translation : TransformComponent {
readonly attribute LengthValue x;
readonly attribute LengthValue y;
readonly attribute LengthValue z;
};