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 Constructor(Dictionary p1, Dictionary p2, |
| 7 optional Dictionary p3, optional Dictionary p4), |
| 8 Constructor(optional Dictionary rect), |
| 9 GarbageCollected, |
| 10 RuntimeEnabled=GeometryInterfaces, |
| 11 ] interface DOMQuad { |
| 12 readonly attribute DOMPoint p1; |
| 13 readonly attribute DOMPoint p2; |
| 14 readonly attribute DOMPoint p3; |
| 15 readonly attribute DOMPoint p4; |
| 16 readonly attribute DOMRectReadOnly bounds; |
| 17 }; |
OLD | NEW |