Chromium Code Reviews| 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 // FIXME: Implement the isTrusted attribute. crbug.com/334015 | 46 [RuntimeEnabled=TrustedEvents, Unforgeable ] readonly attribute boolean isTr usted; |
|
tkent
2015/07/16 03:29:37
nit: remove space before ]
dtapuska
2015/07/16 14:48:22
Done.
| |
| 47 // [Unforgeable] readonly attribute boolean isTrusted; | |
| 48 readonly attribute DOMTimeStamp timeStamp; | 47 readonly attribute DOMTimeStamp timeStamp; |
| 49 | 48 |
| 50 // FIXME: initEvent()'s arguments should not be optional. | 49 // FIXME: initEvent()'s arguments should not be optional. |
| 51 [Measure] void initEvent([Default=Undefined] optional DOMString type, | 50 [Measure] void initEvent([Default=Undefined] optional DOMString type, |
| 52 [Default=Undefined] optional boolean bubbles, | 51 [Default=Undefined] optional boolean bubbles, |
| 53 [Default=Undefined] optional boolean cancelable); | 52 [Default=Undefined] optional boolean cancelable); |
| 54 | 53 |
| 55 // Shadow DOM | 54 // Shadow DOM |
| 56 // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event-inte rface | 55 // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event-inte rface |
| 57 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path; | 56 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path; |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 70 const unsigned short KEYPRESS = 1024; | 69 const unsigned short KEYPRESS = 1024; |
| 71 const unsigned short DRAGDROP = 2048; | 70 const unsigned short DRAGDROP = 2048; |
| 72 const unsigned short FOCUS = 4096; | 71 const unsigned short FOCUS = 4096; |
| 73 const unsigned short BLUR = 8192; | 72 const unsigned short BLUR = 8192; |
| 74 const unsigned short SELECT = 16384; | 73 const unsigned short SELECT = 16384; |
| 75 const unsigned short CHANGE = 32768; | 74 const unsigned short CHANGE = 32768; |
| 76 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; | 75 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; |
| 77 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; | 76 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; |
| 78 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; | 77 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; |
| 79 }; | 78 }; |
| OLD | NEW |