| 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, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 readonly attribute unsigned short eventPhase; | 36 readonly attribute unsigned short eventPhase; |
| 37 | 37 |
| 38 void stopPropagation(); | 38 void stopPropagation(); |
| 39 void stopImmediatePropagation(); | 39 void stopImmediatePropagation(); |
| 40 | 40 |
| 41 readonly attribute boolean bubbles; | 41 readonly attribute boolean bubbles; |
| 42 readonly attribute boolean cancelable; | 42 readonly attribute boolean cancelable; |
| 43 void preventDefault(); | 43 void preventDefault(); |
| 44 readonly attribute boolean defaultPrevented; | 44 readonly attribute boolean defaultPrevented; |
| 45 | 45 |
| 46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventScoped] readonly attribute boole
an scoped; |
| 47 |
| 46 [RuntimeEnabled=TrustedEvents, Unforgeable] readonly attribute boolean isTru
sted; | 48 [RuntimeEnabled=TrustedEvents, Unforgeable] readonly attribute boolean isTru
sted; |
| 47 | 49 |
| 48 // TODO(majidvp): At the moment the actual return value type can either | 50 // TODO(majidvp): At the moment the actual return value type can either |
| 49 // be: | 51 // be: |
| 50 // - DOMTimeStamp (i.e. long long): legacy type | 52 // - DOMTimeStamp (i.e. long long): legacy type |
| 51 // - DOMHighResTimeStamp (i.e. double): HighResEventTimeStamp REF is | 53 // - DOMHighResTimeStamp (i.e. double): HighResEventTimeStamp REF is |
| 52 // enabled | 54 // enabled |
| 53 // Below IDL definition uses DOMHighResTimeStamp because all DOMTimeStamp | 55 // Below IDL definition uses DOMHighResTimeStamp because all DOMTimeStamp |
| 54 // values can be represented in double type without any loss of precision. | 56 // values can be represented in double type without any loss of precision. |
| 55 // Once the feature is enabled by default the return value type will always | 57 // Once the feature is enabled by default the return value type will always |
| (...skipping 23 matching lines...) Expand all Loading... |
| 79 const unsigned short KEYPRESS = 1024; | 81 const unsigned short KEYPRESS = 1024; |
| 80 const unsigned short DRAGDROP = 2048; | 82 const unsigned short DRAGDROP = 2048; |
| 81 const unsigned short FOCUS = 4096; | 83 const unsigned short FOCUS = 4096; |
| 82 const unsigned short BLUR = 8192; | 84 const unsigned short BLUR = 8192; |
| 83 const unsigned short SELECT = 16384; | 85 const unsigned short SELECT = 16384; |
| 84 const unsigned short CHANGE = 32768; | 86 const unsigned short CHANGE = 32768; |
| 85 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; | 87 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; |
| 86 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy
ReturnValue] attribute boolean returnValue; | 88 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy
ReturnValue] attribute boolean returnValue; |
| 87 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; | 89 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; |
| 88 }; | 90 }; |
| OLD | NEW |