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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/touch/touch-target-removed-crash.html

Issue 1895303007: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 8 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/touch/touch-target-removed-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/touch-target-removed-crash.html b/third_party/WebKit/LayoutTests/fast/events/touch/touch-target-removed-crash.html
index 02a392c935e6471465603386bf84657af954d952..a62cbf669d9a9b869ee0f842ebcab311831224e0 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/touch-target-removed-crash.html
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/touch-target-removed-crash.html
@@ -11,12 +11,12 @@ if (window.testRunner) {
var div = document.createElement('div');
div.ontouchstart = function() { };
document.body.appendChild(div);
- window.internals.touchEventHandlerCount(document);
+ window.internals.touchStartOrMoveEventHandlerCount(document);
div.parentNode.removeChild(div);
div = 0;
if (window.GCController)
GCController.collect();
- window.internals.touchEventHandlerCount(document);
+ window.internals.touchStartOrMoveEventHandlerCount(document);
}
crash();

Powered by Google App Engine
This is Rietveld 408576698