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

Unified Diff: content/test/data/page_with_touch_handler.html

Issue 2633723002: Add OOPIF-specific test for setting TOUCH_ACTION in PointerEvents. (Closed)
Patch Set: Version without spurious whitespace additions. Created 3 years, 11 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: content/test/data/page_with_touch_handler.html
diff --git a/content/test/data/page_with_touch_handler.html b/content/test/data/page_with_touch_handler.html
index 80ac303d340ad848b55ed48df0f722c4589e971c..0cadfca1819d22e74e4eeea61f17374332e7f7af 100644
--- a/content/test/data/page_with_touch_handler.html
+++ b/content/test/data/page_with_touch_handler.html
@@ -33,7 +33,9 @@
<!-- Be sure to set 100% width/height so the test can determine an appropriate
screen region for targeting events. -->
-<body style="width: 100%; height: 100%">
+<!-- Make the body touch-action: none to force sending the touch action back
+ to the browser during the test, so we can verify that functionality. -->
+<body style="width: 100%; height: 100%; touch-action: none">
Page with Touch Handler
<div id="last-touch-event">noevent</div>
</body>

Powered by Google App Engine
This is Rietveld 408576698