simon.fraser@apple.com | 64010bb | 2016-10-17 19:06:25 +0000 | [diff] [blame] | 1 | /* |
| 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.com | dbfe8cf | 2016-12-11 00:04:30 +0000 | [diff] [blame] | 31 | // The DOMPointInit constructor exists in https://www.w3.org/TR/geometry-1/ but is removed in https://drafts.fxtf.org/geometry/ |
simon.fraser@apple.com | 64010bb | 2016-10-17 19:06:25 +0000 | [diff] [blame] | 32 | [ |
simon.fraser@apple.com | dbfe8cf | 2016-12-11 00:04:30 +0000 | [diff] [blame] | 33 | Constructor(DOMPointInit point), |
simon.fraser@apple.com | 64010bb | 2016-10-17 19:06:25 +0000 | [diff] [blame] | 34 | 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 | ] |
| 39 | interface 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.com | 0cc5c25 | 2017-06-03 21:09:00 +0000 | [diff] [blame] | 47 | [MayThrowException] DOMPoint matrixTransform(optional DOMMatrixInit matrix); |
simon.fraser@apple.com | 64010bb | 2016-10-17 19:06:25 +0000 | [diff] [blame] | 48 | |
| 49 | serializer = { attribute }; |
| 50 | }; |