Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / scrollbars / custom-scrollbar-inactive-pseudo.html
blobe6f0e43c5ba33ccf908f1c36d2ba01f1c39bcdf9
1 <!DOCTYPE HTML>
2 <style>
3 ::-webkit-scrollbar {
4 width: 12px;
6 ::-webkit-scrollbar-track {
7 box-shadow: inset 0 0 6px blue;
9 ::-webkit-scrollbar-track:window-inactive {
10 box-shadow: inset 0 0 6px red;
12 </style>
13 <script>
14 if (window.testRunner)
15 testRunner.setCanOpenWindows();
17 var win = window.open('about:blank');
18 win.focus();
19 </script>
20 <body style="overflow: scroll;"></body>