Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / overflow-outline-repaint.html
blobb2727143d13b3e4656e8f0a5dd2e59d63454da94
1 <html>
2 <head>
3 <script type="text/javascript">
4 function runTest()
6 if (window.testRunner)
7 window.testRunner.dumpAsTextWithPixelResults();
8 document.getElementById("z").lastChild.data='Excellent! Test';
10 </script>
11 </head>
12 <body onload="runTest()">
13 If the red outline at the bottom of the div extends all the way to the scrollbar, the test passes. If it stops short, then the test has failed, and an incomplete repaint has occurred.
14 <div id="t" style="overflow-y: scroll; outline: none; width: 80px; height: 69px;">
15 <br><br><br><br><br><br><br><br><br><span id="z" style="outline: 3px solid red;">Failed Test</span>
16 </div>
17 <script>
18 document.getElementById("t").scrollTop = 91;
19 </script>
20 </body>
21 </html>