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

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

Issue 1563623002: Support registering and dispatching passive event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust comments in layout tests Created 4 years, 11 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://github.com/RByers/EventListenerOptions 5 // https://github.com/RByers/EventListenerOptions
6 6
7 dictionary EventListenerOptions { 7 dictionary EventListenerOptions {
8 // TODO: |capture| is runtime enabled and its value actually 8 // TODO: |capture| is runtime enabled and its value actually
9 // changes whether the feature is enabled or not. Setting 9 // changes whether the feature is enabled or not. Setting
10 // it to a default value here prevents the ability of checking 10 // it to a default value here prevents the ability of checking
11 // whether it was set manually or by default. See EventTarget.cpp 11 // whether it was set manually or by default. See EventTarget.cpp
12 // where it is populated. crbug.com/543685 12 // where it is populated. crbug.com/543685
13 [RuntimeEnabled=EventListenerOptions] boolean capture; 13 [RuntimeEnabled=EventListenerOptions] boolean capture;
14 [RuntimeEnabled=PassiveEventListeners] boolean passive;
14 }; 15 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/Event.cpp ('k') | third_party/WebKit/Source/core/events/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698