OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 [ |
| 6 GarbageCollected, |
| 7 RuntimeEnabled=GeometryInterface, |
| 8 ] interface DOMPointReadOnly { |
| 9 [ImplementedInPrivateScript] readonly attribute unrestricted double x; |
| 10 [ImplementedInPrivateScript] readonly attribute unrestricted double y; |
| 11 [ImplementedInPrivateScript] readonly attribute unrestricted double z; |
| 12 [ImplementedInPrivateScript] readonly attribute unrestricted double w; |
| 13 |
| 14 // FIXME: We should implement DOMMatrixReadOnly interface. |
| 15 // [ImplementedInPrivateScript] DOMPoint matrixTransform(DOMMatrixReadOnly m
atrix); |
| 16 }; |
OLD | NEW |