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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/repaint/shrink-layer.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 <title>Test for bug 62243</title>
4 <style type="text/css">
5 #ruler {
6 transform: translateZ(0);
7 border-bottom: 10px solid black;
8 width: 550px;
9 height: 500px;
10 }
11 </style>
12 <script src="../../resources/run-after-layout-and-paint.js"></script>
13 <script>
14 if (window.testRunner) {
15 testRunner.dumpAsTextWithPixelResults();
16 testRunner.waitUntilDone();
17 }
18 function repaintTest()
19 {
20 document.getElementById("ruler").style.height = "450px";
21 testRunner.notifyDone();
22 }
23 </script>
24 </head>
25 <body onload="runAfterLayoutAndPaint(repaintTest);">
26 <div id="ruler">
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698