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

Unified Diff: third_party/WebKit/Source/core/events/EventListenerOptions.idl

Issue 1956733002: Remove EventListenerOptions runtime enable setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_add_event_listener_options
Patch Set: Amend unit tests Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/EventListenerOptions.idl
diff --git a/third_party/WebKit/Source/core/events/EventListenerOptions.idl b/third_party/WebKit/Source/core/events/EventListenerOptions.idl
index abaeea3b334d79aa1dc2280af3592de12da6aa74..fc7785b6fb0f0908f545e15a65c71e1f549dfb91 100644
--- a/third_party/WebKit/Source/core/events/EventListenerOptions.idl
+++ b/third_party/WebKit/Source/core/events/EventListenerOptions.idl
@@ -5,10 +5,5 @@
// https://dom.spec.whatwg.org/#dictdef-eventlisteneroptions
dictionary EventListenerOptions {
- // TODO: |capture| is runtime enabled and its value actually
- // changes whether the feature is enabled or not. Setting
- // it to a default value here prevents the ability of checking
- // whether it was set manually or by default. See EventTarget.cpp
- // where it is populated. crbug.com/543685
- [RuntimeEnabled=EventListenerOptions] boolean capture;
+ boolean capture = false;
};

Powered by Google App Engine
This is Rietveld 408576698