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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/balance-table-with-border-spacing.html

Issue 2803383002: The first table row is pushed down by border-spacing. (Closed)
Patch Set: break-inside:avoid on a row shouldn't prevent breaking inside adjacent border spacing Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/border-spacing-break-before-unbreakable-row.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <div id="multicol" style="columns:2; width:200px; line-height:20px;">
3 <div style="display:table; border-spacing:1px;">
4 <div style="display:table-cell; width:30px;">
5 <br>
6 <br>
7 <br>
8 <br>
9 <br>
10 </div>
11 </div>
12 </div>
13 <script src="../../resources/testharness.js"></script>
14 <script src="../../resources/testharnessreport.js"></script>
15 <script>
16 test(() => {
17 var multicol = document.getElementById("multicol");
18 assert_equals(multicol.offsetHeight, 61);
19 }, "Balanced multicol with table with border spacing");
20 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/border-spacing-break-before-unbreakable-row.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698