[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / content / test / data / devtools / synthetic_gesture_tests.html
blob280153d9477844c599606b6436134d9968ff5e59
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width,initial-scale=1.0">
6 <title>Synthetic Gesture Test Page</title>
7 </head>
8 <body>
9 <a href="#bottom">Go to the bottom of the page</a>
10 <div id="padding">
11 We need some padding here so that the page is large enough to test swipe
12 and scroll actions.
13 </div>
14 <div id="bottom"><a name="bottom">This is the bottom of the page.</a></div>
15 <script>
16 var padding = document.getElementById('padding');
17 padding.style.border = 'solid';
18 padding.style.height = window.screen.height * 2 + 'px';
19 </script>
20 </body>
21 </html>