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

Unified Diff: third_party/WebKit/Source/web/tests/data/touch-event-handler.html

Issue 2127163002: Limit PassiveDocumentEventListeners to touch and make it experimental (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: A few more layout tests Created 4 years, 5 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/Source/web/tests/data/touch-event-handler.html
diff --git a/third_party/WebKit/Source/web/tests/data/touch-event-handler.html b/third_party/WebKit/Source/web/tests/data/touch-event-handler.html
index 208be2336c6406df0d9a54f0540f8df3e8bb6a48..5a802f503ee4061bde4d174fa7dbcbfa4f43cbbf 100644
--- a/third_party/WebKit/Source/web/tests/data/touch-event-handler.html
+++ b/third_party/WebKit/Source/web/tests/data/touch-event-handler.html
@@ -1,10 +1,12 @@
<!DOCTYPE html>
<html>
+<body style="touch-action: none">
Rick Byers 2016/07/07 20:02:09 do you really need both touch-action and the non-p
dtapuska 2016/07/07 20:34:22 No I was trying to future proof it.
<head>
<script type="text/javascript">
window.addEventListener('touchstart', function(event) {
- });
+ }, {passive: false});
</script>
</head>
-
+<body style="touch-action: none">
Rick Byers 2016/07/07 20:02:09 duplicate body tag?
dtapuska 2016/07/07 20:34:22 Done.
+</body
</html>

Powered by Google App Engine
This is Rietveld 408576698