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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/balance-fixed-height-unused-space.html

Issue 2509813004: Improve strut handling in initial column balancing pass. (Closed)
Patch Set: Rebaseline for column-rules-fixed-height. This test no longer triggers deep layout. Created 4 years, 1 month 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/fast/multicol/balance-fixed-height-unused-space-after-strutless-break.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 <p>There should be a green square below, and no red.</p>
3 <div style="columns:4; column-gap:0; width:100px; height:150px; orphans:1; widow s:1; line-height:100px;">
4 <div id="parent" style="background:red;">
5 <div id="child1" style="background:green;"><br></div>
6 <div id="child2" style="background:green;">
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 parent = document.getElementById("parent");
18 var child1 = document.getElementById("child1");
19 var child2 = document.getElementById("child2");
20 assert_equals(parent.offsetHeight, 400);
21 assert_equals(child1.offsetHeight, 100);
22 assert_equals(child2.offsetHeight, 300);
23 }, "Balance, non-auto height, unused space");
24 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/balance-fixed-height-unused-space-after-strutless-break.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698