Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/overflow-outline-repaint.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript">
4 function runTest()
5 {
6 if (window.testRunner)
7 window.testRunner.dumpAsTextWithPixelResults();
8 document.getElementById("z").lastChild.data='Excellent! Test';
9 }
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 incomple te 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 r ed;">Failed Test</span>
16 </div>
17 <script>
18 document.getElementById("t").scrollTop = 91;
19 </script>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698