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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/touch-action-iframe.html

Issue 1498923004: Don't reset touch-action zoom state at scrollers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 <link rel='stylesheet' type='text/css' href='touch-action-tests.css'>
3 <script src='touch-action-tests.js'></script>
4
5 <!--
6 Test a bunch of cases involving iframes.
7 -->
8 <iframe srcdoc="
9 <div style='touch-action: none;' expected-action='none'>
10 touch-action: none still applies inside an iframe
11 </div>
12 "></iframe>
13
14 <iframe style='touch-action: none;' srcdoc="
15 <div expected-action='pan-x-y'>
16 Zoom (but not scroll) related touch-action bits propagate into iframes
17 </div>
18 "></iframe>
19
20 <iframe style='touch-action: manipulation;' srcdoc="
21 <div expected-action='manipulation'>
22 touch-action: manipulation is maintained across iframes
23 </div>
24 "></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698