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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/panScroll-panIcon-expected.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 #draggable {
5 padding: 5pt;
6 border: 3px solid #00cc00;
7 background: #00cccc;
8 width: 80px;
9 cursor: hand;
10 }
11
12 #scrollable {
13 height: 200px;
14 overflow: auto;
15 border: solid 3px #cc0000;
16 font-size: 80px;
17 }
18 </style>
19 </head>
20 <body>
21 You should run this test in DRT.
22 <br>
23 For manual testing, hold middle button in scrollable and move aroudn mouse point er for scrolling, then release middle button to stop scrolling.
24 You won't see pan icon after pan scroll.
25 <div id="container">
26 Scrollable
27 <div id="scrollable">
28 <div>line 0</div>
29 <div>line 1</div>
30 <div>line 2</div>
31 <div>line 3</div>
32 <div>line 4</div>
33 <div>line 5</div>
34 <div>line 6</div>
35 <div>line 7</div>
36 <div>line 8</div>
37 <div>line 9</div>
38 </div>
39 </div>
40 <script>
41 setUpTest();
42 </script>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698