Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: third_party/WebKit/Source/core/events/Event.idl

Issue 2012423004: Rename Event.scoped to Event.composed and invert its meaning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@event-composed-path
Patch Set: rebased Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 24 matching lines...) Expand all
35 readonly attribute unsigned short eventPhase; 35 readonly attribute unsigned short eventPhase;
36 36
37 void stopPropagation(); 37 void stopPropagation();
38 void stopImmediatePropagation(); 38 void stopImmediatePropagation();
39 39
40 readonly attribute boolean bubbles; 40 readonly attribute boolean bubbles;
41 readonly attribute boolean cancelable; 41 readonly attribute boolean cancelable;
42 void preventDefault(); 42 void preventDefault();
43 readonly attribute boolean defaultPrevented; 43 readonly attribute boolean defaultPrevented;
44 44
45 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventScoped] readonly attribute boole an scoped; 45 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposed] readonly attribute boo lean composed;
46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventRelatedTargetScoped] readonly at tribute boolean relatedTargetScoped; 46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventRelatedTargetScoped] readonly at tribute boolean relatedTargetScoped;
47 47
48 [Unforgeable] readonly attribute boolean isTrusted; 48 [Unforgeable] readonly attribute boolean isTrusted;
49 49
50 // 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
51 // be: 51 // be:
52 // - DOMTimeStamp (i.e. long long): legacy type 52 // - DOMTimeStamp (i.e. long long): legacy type
53 // - DOMHighResTimeStamp (i.e. double): HighResEventTimeStamp REF is 53 // - DOMHighResTimeStamp (i.e. double): HighResEventTimeStamp REF is
54 // enabled 54 // enabled
55 // Below IDL definition uses DOMHighResTimeStamp because all DOMTimeStamp 55 // Below IDL definition uses DOMHighResTimeStamp because all DOMTimeStamp
(...skipping 26 matching lines...) Expand all
82 const unsigned short KEYPRESS = 1024; 82 const unsigned short KEYPRESS = 1024;
83 const unsigned short DRAGDROP = 2048; 83 const unsigned short DRAGDROP = 2048;
84 const unsigned short FOCUS = 4096; 84 const unsigned short FOCUS = 4096;
85 const unsigned short BLUR = 8192; 85 const unsigned short BLUR = 8192;
86 const unsigned short SELECT = 16384; 86 const unsigned short SELECT = 16384;
87 const unsigned short CHANGE = 32768; 87 const unsigned short CHANGE = 32768;
88 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; 88 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
89 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; 89 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue;
90 [MeasureAs=EventCancelBubble, CallWith=ExecutionContext] attribute boolean c ancelBubble; 90 [MeasureAs=EventCancelBubble, CallWith=ExecutionContext] attribute boolean c ancelBubble;
91 }; 91 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/Event.cpp ('k') | third_party/WebKit/Source/core/events/EventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698