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

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

Issue 1577263004: Communicate whether passive event listeners exist to cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners
Patch Set: Fix nits Created 4 years, 10 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-both.html
diff --git a/third_party/WebKit/Source/web/tests/data/touch-event-handler-both.html b/third_party/WebKit/Source/web/tests/data/touch-event-handler-both.html
new file mode 100644
index 0000000000000000000000000000000000000000..b04bb10f87283d66dba4d1a2f979e313448dadf7
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/touch-event-handler-both.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script type="text/javascript">
+ window.addEventListener('touchstart', function(event) {
+ }, {passive: true} );
+ window.addEventListener('touchstart', function(event) {
+ }, {passive: false} );
+ </script>
+</head>
+
+</html>

Powered by Google App Engine
This is Rietveld 408576698