Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / table-overflow-hidden-in-overflow-hidden-scrolled.html
blobcc2f7bdb4b95734ac0385ab6952fa8ea7289ae6f
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>
34 if (window.testRunner) {
35 testRunner.dumpAsTextWithPixelResults();
36 testRunner.waitUntilDone();
39 function repaintTest()
41 window.location.hash = "#ucp";
42 if (window.testRunner)
43 testRunner.notifyDone();
46 function runTest()
48 document.getElementById("outer").scrollTop = 1000;
49 setTimeout(repaintTest, 0);
51 window.addEventListener("load", runTest, false);
52 </script>
53 </head>
54 <body>
55 <!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element being scrolled off page using javascript. -->
56 <!-- For the test to pass you should not see any RED, only green -->
57 <div id="outer">
58 <section>
59 <div class="innerWrapper">
60 <div class="red"></div>
61 <table id="ucp" class="green"><td style="height: 190px"></td></table>
62 </div>
63 </section>
64 </div>
65 </body>
66 </html>