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

Side by Side Diff: Source/core/dom/Element.idl

Issue 19697008: Adds ActivityLog attributes to mouse and keyboard events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/page/Window.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 void webkitRequestPointerLock(); 119 void webkitRequestPointerLock();
120 120
121 // CSS Regions API 121 // CSS Regions API
122 [EnabledAtRuntime=cssRegions, PerWorldBindings] readonly attribute DOMString webkitRegionOverset; 122 [EnabledAtRuntime=cssRegions, PerWorldBindings] readonly attribute DOMString webkitRegionOverset;
123 [EnabledAtRuntime=cssRegions] sequence<Range> webkitGetRegionFlowRanges(); 123 [EnabledAtRuntime=cssRegions] sequence<Range> webkitGetRegionFlowRanges();
124 124
125 // Event handler DOM attributes 125 // Event handler DOM attributes
126 [NotEnumerable, PerWorldBindings] attribute EventListener onabort; 126 [NotEnumerable, PerWorldBindings] attribute EventListener onabort;
127 [NotEnumerable, PerWorldBindings] attribute EventListener onblur; 127 [NotEnumerable, PerWorldBindings] attribute EventListener onblur;
128 [NotEnumerable, PerWorldBindings] attribute EventListener onchange; 128 [NotEnumerable, PerWorldBindings] attribute EventListener onchange;
129 [NotEnumerable, PerWorldBindings] attribute EventListener onclick; 129 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onclick;
130 [NotEnumerable, PerWorldBindings] attribute EventListener oncontextmenu; 130 [NotEnumerable, PerWorldBindings] attribute EventListener oncontextmenu;
131 [NotEnumerable, PerWorldBindings] attribute EventListener ondblclick; 131 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondblclick;
132 [NotEnumerable, PerWorldBindings] attribute EventListener ondrag; 132 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondrag;
133 [NotEnumerable, PerWorldBindings] attribute EventListener ondragend; 133 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragend;
134 [NotEnumerable, PerWorldBindings] attribute EventListener ondragenter; 134 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragenter;
135 [NotEnumerable, PerWorldBindings] attribute EventListener ondragleave; 135 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragleave;
136 [NotEnumerable, PerWorldBindings] attribute EventListener ondragover; 136 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragover;
137 [NotEnumerable, PerWorldBindings] attribute EventListener ondragstart; 137 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragstart;
138 [NotEnumerable, PerWorldBindings] attribute EventListener ondrop; 138 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondrop;
139 [NotEnumerable, PerWorldBindings] attribute EventListener onerror; 139 [NotEnumerable, PerWorldBindings] attribute EventListener onerror;
140 [NotEnumerable, PerWorldBindings] attribute EventListener onfocus; 140 [NotEnumerable, PerWorldBindings] attribute EventListener onfocus;
141 [NotEnumerable, PerWorldBindings] attribute EventListener oninput; 141 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener oninput;
142 [NotEnumerable, PerWorldBindings] attribute EventListener oninvalid; 142 [NotEnumerable, PerWorldBindings] attribute EventListener oninvalid;
143 [NotEnumerable, PerWorldBindings] attribute EventListener onkeydown; 143 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeydown;
144 [NotEnumerable, PerWorldBindings] attribute EventListener onkeypress; 144 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeypress;
145 [NotEnumerable, PerWorldBindings] attribute EventListener onkeyup; 145 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeyup;
146 [NotEnumerable, PerWorldBindings] attribute EventListener onload; 146 [NotEnumerable, PerWorldBindings] attribute EventListener onload;
147 [NotEnumerable, PerWorldBindings] attribute EventListener onmousedown; 147 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousedown;
148 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseenter; 148 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseenter;
149 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseleave; 149 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseleave;
150 [NotEnumerable, PerWorldBindings] attribute EventListener onmousemove; 150 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousemove;
151 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseout; 151 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseout;
152 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseover; 152 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseover;
153 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseup; 153 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseup;
154 [NotEnumerable, PerWorldBindings] attribute EventListener onmousewheel; 154 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousewheel;
155 [NotEnumerable, PerWorldBindings] attribute EventListener onscroll; 155 [NotEnumerable, PerWorldBindings] attribute EventListener onscroll;
156 [NotEnumerable, PerWorldBindings] attribute EventListener onselect; 156 [NotEnumerable, PerWorldBindings] attribute EventListener onselect;
157 [NotEnumerable, PerWorldBindings] attribute EventListener onsubmit; 157 [NotEnumerable, PerWorldBindings] attribute EventListener onsubmit;
158 158
159 // attribute [NotEnumerable] EventListener oncanplay; 159 // attribute [NotEnumerable] EventListener oncanplay;
160 // attribute [NotEnumerable] EventListener oncanplaythrough; 160 // attribute [NotEnumerable] EventListener oncanplaythrough;
161 // attribute [NotEnumerable] EventListener ondurationchange; 161 // attribute [NotEnumerable] EventListener ondurationchange;
162 // attribute [NotEnumerable] EventListener onemptied; 162 // attribute [NotEnumerable] EventListener onemptied;
163 // attribute [NotEnumerable] EventListener onended; 163 // attribute [NotEnumerable] EventListener onended;
164 // attribute [NotEnumerable] EventListener onloadeddata; 164 // attribute [NotEnumerable] EventListener onloadeddata;
(...skipping 28 matching lines...) Expand all
193 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove; 193 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove;
194 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend; 194 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend;
195 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel; 195 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel;
196 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; 196 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change;
197 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; 197 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error;
198 }; 198 };
199 199
200 Element implements ParentNode; 200 Element implements ParentNode;
201 Element implements ChildNode; 201 Element implements ChildNode;
202 202
OLDNEW
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/page/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698