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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/hover-invalidation-table-expected.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .bla {
4 background-color: green;
5 }
6
7 table {
8 position:relative;
9 top: 180px;
10 }
11 </style>
12 <table>
13 <tr>
14 <td rowspan="2">1,1</td>
15 <td>1,4</td>
16 </tr>
17 <tr>
18 <td>2,3</td>
19 </tr>
20 <tr class="bla">
21 <td rowspan="2" id="secondRowSpan">3,1</td>
22 <td>3,4</td>
23 </tr>
24 <tr>
25 <td>4,4</td>
26 </tr>
27 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698