blob: 910829ffaa293c295ebdc279f830525a5d044055 [file] [log] [blame]
simon.fraser@apple.com64010bb2016-10-17 19:06:25 +00001/*
2 * Copyright (C) 2014 Adobe Systems Incorporated. All rights reserved.
3 * Copyright (C) 2016 Apple Inc. All Rights Reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28 * OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31[
32 Constructor(optional unrestricted double x = 0, optional unrestricted double y = 0,
33 optional unrestricted double z = 0, optional unrestricted double w = 1),
34 Exposed=(Window,Worker),
35 ImplementationLacksVTable
36]
37interface DOMPointReadOnly {
38 [NewObject] static DOMPointReadOnly fromPoint(optional DOMPointInit other);
39
40 readonly attribute unrestricted double x;
41 readonly attribute unrestricted double y;
42 readonly attribute unrestricted double z;
43 readonly attribute unrestricted double w;
44
45 // FIXME: No support for DOMMatrix yet (webkit.org/b/110001)
46 // DOMPoint matrixTransform(optional DOMMatrixInit matrix);
47
48 serializer = { attribute };
49};