Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / scrollbars / custom-scrollbar-adjust-on-inactive-pseudo-expected.html
blobefcde042f12e51fb6f6f788fe7fde6add4e5640b
1 <!DOCTYPE HTML>
2 <style>
3 /* Let's get this party started */
4 ::-webkit-scrollbar {
5 width: 150px;
6 height: 150px;
9 /* Track */
10 ::-webkit-scrollbar-track {
11 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
12 -webkit-border-radius: 10px;
13 border-radius: 10px;
16 /* Handle */
17 ::-webkit-scrollbar-thumb {
18 -webkit-border-radius: 1px;
19 background: rgba(255,0,0,0.4);
20 -webkit-box-shadow: inset 0 0 1px rgba(255,250,0,0.5);
22 body {
23 width: 1000px;
24 height: 1000px;
27 div{
28 width: 1500px;
29 height: 1500px;
31 </style>
32 <body>
33 <div></div>
34 </body>