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

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

Issue 1922093003: Add AddEventListenerOptions addEventListenerOptions interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_inequality.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_dispatch.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_dispatch.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_dispatch.html
index 2c38050386a569dbd8ebcd35152d6c009496277a..5ffa530783e1a29433094798ad3f27b05ac186b3 100644
--- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_dispatch.html
+++ b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_dispatch.html
@@ -50,8 +50,8 @@ function testTwoHandlers() {
assert_true(passive_called);
assert_true(blocking_called);
assert_true(event.defaultPrevented);
- document.removeEventListener('test', passive_handler, {"passive" : true});
- document.removeEventListener('test', blocking_handler, {"passive" : false});
+ document.removeEventListener('test', passive_handler, {});
+ document.removeEventListener('test', blocking_handler, {});
}
test(testTwoArgumentRegister, "Two argument register");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_inequality.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698