Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / touch / gesture / gesture-scrollbar-fling-expected.html
blob20ceaa978a222435a91d8613f1e3ca5743b6e7dd
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
4 <!-- This tests that the scrollbar thumb is deselected on a fling start -->
6 <head>
7 <style type="text/css">
8 ::-webkit-scrollbar {
9 background-color: #ccc;
10 height: 15px;
11 width: 15px;
14 ::-webkit-scrollbar-button {
15 display: none;
18 ::-webkit-scrollbar-thumb {
19 background-color: #777;
20 height: 15px;
21 width: 15px;
24 ::-webkit-scrollbar-thumb:active {
25 background-color: #333;
28 #scrollable {
29 height: 300px;
30 width: 300px;
31 overflow: scroll;
34 .large {
35 height: 600px;
36 width: 600px;
38 </style>
39 </head>
40 <body>
41 <div id="scrollable">
42 <div class="large">
43 </div>
44 </div>
46 </body>
47 </html>