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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row-expected.html

Issue 2783953002: Fix spanning cell painting background from wrong row (Closed)
Patch Set: Remove non-const version and use faster implementation Created 3 years, 8 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>td { width: 50px; height: 50px; padding: 0; background-color: yellow }</s tyle>
3 <div style="overflow: hidden; width: 100px; height: 100px">
4 <table style="margin-top: -30px; border-spacing: 0">
5 <tr>
6 <td rowspan="2" style="background-color: blue"></td>
7 <td></td>
8 </tr>
9 <tr>
10 <td></td>
11 </tr>
12 </table>
13 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698