Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / overflow-hidden-in-overflow-hidden-scrolled.html
blobe9876d529c00cb98f4ed54d8691445f44679ea57
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/default.css">
5 <style>
6 #outer {
7 position: relative;
8 overflow: hidden;
9 height: 200px;
12 section {
13 padding: 192px 0 0 0;
14 width: 200px;
17 div {
18 height: 190px;
21 .innerWrapper {
22 overflow: hidden;
25 .red {
26 background-color: red;
29 .green {
30 background-color: green;
32 </style>
33 <script src="resources/text-based-repaint.js"></script>
34 <script>
35 function repaintTest()
37 window.location.hash = "#ucp";
40 function runTest()
42 document.getElementById("outer").scrollTop = 1000;
43 runRepaintTest();
45 </script>
46 </head>
47 <body onload="runTest()">
48 <!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element being scrolled off page using javascript. -->
49 <!-- For the test to pass you should not see any RED, only green -->
50 <div id="outer">
51 <section>
52 <div class="innerWrapper">
53 <div class="red"></div>
54 <div id="ucp" class="green"></div>
55 </div>
56 </section>
57 </div>
58 </body>
59 </html>