| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 [ | 21 [ |
| 22 Constructor(DOMString type, [Named] optional boolean bubbles, [Named] option
al boolean cancelable), | 22 // TODO(eseidel): Type is optional to appease dart analyzer: |
| 23 // The class 'Event' does not have a default constructor |
| 24 Constructor([Named] optional DOMString type, [Named] optional boolean bubble
s, [Named] optional boolean cancelable), |
| 23 ] interface Event { | 25 ] interface Event { |
| 24 // DOM PhaseType | 26 // DOM PhaseType |
| 25 const unsigned short NONE = 0; | 27 const unsigned short NONE = 0; |
| 26 const unsigned short CAPTURING_PHASE = 1; | 28 const unsigned short CAPTURING_PHASE = 1; |
| 27 const unsigned short AT_TARGET = 2; | 29 const unsigned short AT_TARGET = 2; |
| 28 const unsigned short BUBBLING_PHASE = 3; | 30 const unsigned short BUBBLING_PHASE = 3; |
| 29 | 31 |
| 30 readonly attribute DOMString type; | 32 readonly attribute DOMString type; |
| 31 readonly attribute EventTarget target; | 33 readonly attribute EventTarget target; |
| 32 readonly attribute EventTarget currentTarget; | 34 readonly attribute EventTarget currentTarget; |
| 33 readonly attribute unsigned short eventPhase; | 35 readonly attribute unsigned short eventPhase; |
| 34 [InitializedByEventConstructor] readonly attribute boolean bubbles; | 36 [InitializedByEventConstructor] readonly attribute boolean bubbles; |
| 35 [InitializedByEventConstructor] readonly attribute boolean cancelable; | 37 [InitializedByEventConstructor] readonly attribute boolean cancelable; |
| 36 readonly attribute double timeStamp; | 38 readonly attribute double timeStamp; |
| 37 | 39 |
| 38 void stopPropagation(); | 40 void stopPropagation(); |
| 39 void preventDefault(); | 41 void preventDefault(); |
| 40 | 42 |
| 41 // DOM Level 3 Additions. | 43 // DOM Level 3 Additions. |
| 42 readonly attribute boolean defaultPrevented; | 44 readonly attribute boolean defaultPrevented; |
| 43 void stopImmediatePropagation(); | 45 void stopImmediatePropagation(); |
| 44 | 46 |
| 45 // IE Extensions | 47 // IE Extensions |
| 46 readonly attribute EventTarget srcElement; | 48 readonly attribute EventTarget srcElement; |
| 47 [CallWith=ExecutionContext, ImplementedAs=legacyReturnValue] attribute boole
an returnValue; | 49 [CallWith=ExecutionContext, ImplementedAs=legacyReturnValue] attribute boole
an returnValue; |
| 48 attribute boolean cancelBubble; | 50 attribute boolean cancelBubble; |
| 49 readonly attribute NodeList path; | 51 readonly attribute NodeList path; |
| 50 }; | 52 }; |
| OLD | NEW |