Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / scrollbar-painting.html
blob9215fea49cc62bd04571a90817a265e004d206c8
1 <!DOCTYPE html>
2 <style>
3 .composited {
4 transform: translateZ(0);
7 .container {
8 width:100px;
9 height:100px;
10 overflow:scroll;
11 resize:both;
12 position:absolute;
15 .container::-webkit-scrollbar {
16 background-color: rgba(0, 127, 0, 0.5);
19 .container::-webkit-resizer {
20 background-color: rgba(0, 127, 0, 0.5);
23 .contents {
24 background-color: rgba(0, 127, 0, 0.5);
25 height: 100%;
26 width: 100%;
28 </style>
29 <script>
30 if (window.testRunner)
31 testRunner.dumpAsTextWithPixelResults();
32 </script>
33 <!-- You should see a single 50% transparent green square -->
34 <div id="container" class="container composited">
35 <div class="contents"></div>
36 </div>