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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/table-writing-modes-v.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 <!DOCTYPE HTML>
2 <style>
3 table { border-collapse: collapse; background-color: red; margin: 10px; }
4 td { width: 50px; height: 50px; background-color: green; }
5 </style>
6 <table>
7 <tr>
8 <td></td>
9 <td></td>
10 </tr>
11 <tr>
12 <td></td>
13 <td></td>
14 </tr>
15 </table>
16 <table style="-webkit-writing-mode: vertical-lr;">
17 <tr>
18 <td></td>
19 <td></td>
20 </tr>
21 <tr>
22 <td></td>
23 <td></td>
24 </tr>
25 </table>
26 <table style="-webkit-writing-mode: vertical-rl;">
27 <tr>
28 <td></td>
29 <td></td>
30 </tr>
31 <tr>
32 <td></td>
33 <td></td>
34 </tr>
35 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698