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

Side by Side Diff: Source/web/tests/data/touch-action-overflow.html

Issue 16507017: Initial touch-action main thread implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Don't add delay param to public API just yet Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" type="text/css" href="touch-action-tests.css"/>
5 <script src="touch-action-tests.js"></script>
6 </head>
7 <body>
8
9 <!--
10 Test a bunch of cases involving overflow: scroll elements.
11 -->
12
13 <div class='scroll' style='height:75px'>
14 <div class='ta-none' expected-action="none">
15 touch-action: none still applies in scrollable area
16 </div>
17 <div class='spacer'></div>
18 </div>
19
20 <div class='ta-none scroll' style='height:75px'>
21 <div expected-action="none">
22 Touch-action inherited by child in scrollable area
23 </div>
24 <div class='spacer'></div>
25 </div>
26
27 <div class='ta-none'>
28 <div class='scroll' expected-action="auto">
29 Touch-action: none is not propagated into overflow-scroll elements
30 </div>
31 </div>
32
33 </body>
34 </html>
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698