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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/remove-cell-with-border-box-expected.html

Issue 2173163003: [css-tables] Mark sibling cells dirty when a cell is removed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark fast/repaint/table-collapsed-border.html NeedsRebaseline Created 4 years, 5 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 td {
4 width: 50px;
5 height: 50px;
6 padding: 0px;
7 background: lime;
8 }
9 td div {
10 display: inline-block;
11 width: 22px;
12 height: 5px;
13 background: orange;
14 }
15 </style>
16 <p>Removing the left cell with a big border should give the remaining cells enou gh space to put the orange inline-blocks on the same line.</p>
17 <table style="border-collapse:collapse">
18 <tr>
19 <td><div></div> <div></div></td>
20 <td><div></div> <div></div></td>
21 </tr>
22 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698