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

Unified Diff: Source/web/tests/data/touch-action-simple.html

Issue 220343002: Update touch-action hit-testing to match latest spec changes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: Source/web/tests/data/touch-action-simple.html
diff --git a/Source/web/tests/data/touch-action-simple.html b/Source/web/tests/data/touch-action-simple.html
index b98e8d726f4b4fcbd5d37bc909c47c69c4122745..5dcfab76ac191557a0fd7f6a0d765983f7376f84 100644
--- a/Source/web/tests/data/touch-action-simple.html
+++ b/Source/web/tests/data/touch-action-simple.html
@@ -51,8 +51,24 @@
</span>
</div>
+<div style='height: 0; margin-bottom: 50px'>
Rick Byers 2014/04/02 20:25:20 remove this div. Since you're not specifying a tou
Zeeshan Qureshi 2014/04/04 01:12:31 Done.
+ <svg class='ta-none' expected-action='none' xmlns="http://www.w3.org/2000/svg">
+ touch-action should be applicable to svg root element
+ </svg>
+</div>
+
<div class='ta-none' style='height: 0; margin-bottom: 50px'>
<svg expected-action='none' xmlns="http://www.w3.org/2000/svg">
touch-action should be inherited by svg root element
</svg>
-</div>
+</div>
+
+<div style='height: 0; margin-bottom: 50px'>
Rick Byers 2014/04/02 20:25:20 ditto for above
Zeeshan Qureshi 2014/04/04 01:12:31 Done.
+ <img class='ta-none' expected-action='none' src='white-1x1.png'></img>
+ touch-action should be applicable to img element
+</div>
+
+<div class='ta-none' style='height: 0; margin-bottom: 50px'>
+ <img expected-action='none' src='white-1x1.png'></img>
+ touch-action should be inherited by img element
+</div>
Rick Byers 2014/04/02 20:25:20 probably need a simple column or row case
Zeeshan Qureshi 2014/04/04 01:12:31 Added.
« Source/web/tests/TouchActionTest.cpp ('K') | « Source/web/tests/TouchActionTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698