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

Unified Diff: LayoutTests/fast/events/touch/gesture/resources/gesture-tap-down-iframe.html

Issue 163933002: Send early ShowPress on TapDown when page isn't scrollable/pinchable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Handle special form elements / iframes Created 6 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: LayoutTests/fast/events/touch/gesture/resources/gesture-tap-down-iframe.html
diff --git a/LayoutTests/fast/events/touch/gesture/resources/gesture-tap-down-iframe.html b/LayoutTests/fast/events/touch/gesture/resources/gesture-tap-down-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..641920ba2b00e65459583f8a0f9f1e304810a56f
--- /dev/null
+++ b/LayoutTests/fast/events/touch/gesture/resources/gesture-tap-down-iframe.html
@@ -0,0 +1,17 @@
+<html>
+<style>
+body {
+ width: 500px;
+ height: 500px;
+ background-color: blue;
+}
+
+body:hover { background-color: red; }
+
+body:active { background-color: green; }
+
+body:hover:active { background-color: yellow; }
+</style>
+<body class="interactive">
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698