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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/table-cell-move-expected.html

Issue 2321183002: Move repaint tests (except for svg/) 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 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <body>
5 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=8449">Bugzill a bug 8449</a>
6 REGRESSION: Incomplete repaint of table cell that moved
7 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</ b>
8 There should be only a green square below the line, and no red.
9 </p>
10
11 <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
12 There will be a red square and a green rectangle.
13 </p>
14 <hr>
15 <table cellspacing="0" cellpadding="0">
16 <tr>
17 <td></td>
18 <td style="height: 60px;" id="t"></td>
19 </tr>
20 <tr>
21 <td style="width: 60px;">
22 <div style="background: green; height: 60px;"></div>
23 </td>
24 <td style="height: 180px;"></td>
25 </tr>
26 <tr>
27 <td style="background: red;"></td>
28 <td style="height: 0;" id="s"></td>
29 </tr>
30 </table>
31
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698