Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / pseudo-element-selector-scrollbar-hover-expected.html
blob371bdaa9001c9f8db64d0e9b85e485d8afbd693d
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Scrollbar thumb re-rendering on hover</title>
5 <style>
6 #scrollable {
7 height: 200px;
8 width: 200px;
9 overflow: auto;
10 background-color: green;
11 -webkit-appearance: none;
14 #scrollable::-webkit-scrollbar {
15 width: 10px;
18 #scrollable::-webkit-scrollbar-thumb {
19 background-color: green;
22 #content {
23 height: 400px;
24 width: 100px;
26 </style>
27 </head>
28 <body>
29 <p>Bug <a href="http://webkit.org/b/109230">109230</a>: REGRESSION(r130089): Scrollbar thumb no longer re-rendered on hover</p>
30 <p>For this test to pass, the below box should be green (in DumpRenderTree).<br>
31 Interactively, the whole box should turn green on mouseover, even if not over the scrollbar thumb.</p>
32 <div id="scrollable">
33 <div id="content"></div>
34 </div>
35 </body>
36 </html>