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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_query.html

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/LayoutTests/fast/events/eventlisteneroptions/capture_query.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_query.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_query.html
index e7c9e5ef2e7000be130b447adbd2b373a136bef6..fe5aa4372e97fb4917a5ad829d7f65dbba326acf 100644
--- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_query.html
+++ b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_query.html
@@ -19,10 +19,10 @@ test(function(t) {
};
document.addEventListener('test_event', query_function, query_options);
- assert_equals(supportsCapture, internals.runtimeFlags.eventListenerOptionsEnabled);
+ assert_true(supportsCapture);
supportsCapture = false;
document.removeEventListener('test_event', query_function, query_options);
- assert_equals(supportsCapture, internals.runtimeFlags.eventListenerOptionsEnabled);
+ assert_true(supportsCapture);
t.done();
}, "Supports Capture");
</script>

Powered by Google App Engine
This is Rietveld 408576698