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

Unified Diff: third_party/WebKit/LayoutTests/inspector/input-event-warning.html

Issue 2024913002: Fix runtime setting forcing passive event listeners to scroll blocking events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix layout test 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/inspector/input-event-warning-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/input-event-warning.html
diff --git a/third_party/WebKit/LayoutTests/inspector/input-event-warning.html b/third_party/WebKit/LayoutTests/inspector/input-event-warning.html
index f0cec9e9b393209ce9d09923cdbfc16e0225f81a..c0d66918832d820771d87bb1a87751d2c51c90b0 100644
--- a/third_party/WebKit/LayoutTests/inspector/input-event-warning.html
+++ b/third_party/WebKit/LayoutTests/inspector/input-event-warning.html
@@ -35,10 +35,9 @@ function dispatchEvents()
new MouseEvent("mousemove", { cancelable: true, clientX: 100, clinetY: 100, movementX: 0, movementY: 0 }),
new TouchEvent("touchstart", touchEventInit),
new TouchEvent("touchmove", touchEventInit),
- new TouchEvent("touchend", touchEventInit),
];
- var eventTypes = ["wheel", "mousemove", "touchstart", "touchmove", "touchend"];
+ var eventTypes = ["wheel", "mousemove", "touchstart", "touchmove"];
for (var type of eventTypes) {
target.addEventListener(type, eventListener1);
target.addEventListener(type, eventListener2);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/input-event-warning-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698