blob: 3ffd66fd7121a9dc7cc5f8573a76a789744f968e [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
simon.fraser@apple.comdbfe8cf2016-12-11 00:04:30 +000031// The DOMPointInit constructor exists in https://www.w3.org/TR/geometry-1/ but is removed in https://drafts.fxtf.org/geometry/
simon.fraser@apple.com64010bb2016-10-17 19:06:25 +000032[
simon.fraser@apple.comdbfe8cf2016-12-11 00:04:30 +000033 Constructor(DOMPointInit point),
simon.fraser@apple.com64010bb2016-10-17 19:06:25 +000034 Constructor(optional unrestricted double x = 0, optional unrestricted double y = 0,
35 optional unrestricted double z = 0, optional unrestricted double w = 1),
36 Exposed=(Window,Worker),
37 ImplementationLacksVTable
38]
39interface DOMPointReadOnly {
40 [NewObject] static DOMPointReadOnly fromPoint(optional DOMPointInit other);
41
42 readonly attribute unrestricted double x;
43 readonly attribute unrestricted double y;
44 readonly attribute unrestricted double z;
45 readonly attribute unrestricted double w;
46
simon.fraser@apple.com0cc5c252017-06-03 21:09:00 +000047 [MayThrowException] DOMPoint matrixTransform(optional DOMMatrixInit matrix);
simon.fraser@apple.com64010bb2016-10-17 19:06:25 +000048
49 serializer = { attribute };
50};