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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.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_equality.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
index 7dae55b97bad4ad05ce5c3f91df35f2274624e20..c89e6af74b079e99088346a6e5ca31754bb658f5 100644
--- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
+++ b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
@@ -14,9 +14,9 @@ function testOptionEquality(addOptionValue, removeOptionValue, test) {
test.done();
}
-test(function(t) { testOptionEquality({}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Empty object");
-test(function(t) { testOptionEquality({'capture': false}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Capture false");
+test(function(t) { testOptionEquality({}, false, t); }, "Empty object");
+test(function(t) { testOptionEquality({'capture': false}, false, t); }, "Capture false");
test(function(t) { testOptionEquality({'capture': true}, true, t); }, "Capture true");
-test(function(t) { testOptionEquality({'dummy': true}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Non-empty object");
+test(function(t) { testOptionEquality({'dummy': true}, false, t); }, "Non-empty object");
</script>

Powered by Google App Engine
This is Rietveld 408576698