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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/panScroll-click.html

Issue 2289213002: Implement Middle Click Autoscroll on all platforms not just Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into panscroll Created 4 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style type="text/css">
4 #scrollable {
5 height: 200px;
6 overflow: auto;
7 border: solid 3px #cc0000;
8 font-size: 80px;
9 }
10 </style>
11 <script src="../../resources/js-test.js"></script>
12 <script src="./resources/panScroll.js"></script>
13 <script>
14 function start()
15 {
16 description('Check pan scroll by click mouse');
17 testPanScroll({
18 'clickOrDrag': 'click',
19 'scrollable': $('scrollable'),
20 });
21 }
22 </script>
23 </head>
24 <body onload="start()">
25 <div id="container">
26 <p id="description"></p>
27 For manual testing, hold middle button in scrollable and move aroudn mouse point er for scrolling, then release middle button to stop scrolling.
28 <div id="scrollable"></div>
29 </div>
30 <div id="console"></div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698