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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align-expected.html

Issue 2412923002: Top-align table cells in rows that cross fragmentainer boundaries. (Closed)
Patch Set: Let's keep the pagination strut substraction thing a bit longer, since removing it affects some DRT… Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align-expected.html b/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align-expected.html
deleted file mode 100644
index c912adabebf457eccf14eaad24790cfa47197314..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align-expected.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!DOCTYPE html>
-<style>
- .mc { width:520px; height:80px; font-size:12px; line-height:20px; background:#ddd; }
- .mc span { font-size:2em; line-height:30px; }
-</style>
-
-<p>The big text should be in the first column, and baseline-aligned with the line in its neighbor cell on the left:</p>
-<div class="mc">
- <div style="float:left; padding-left:10px; padding-top:10px; width:270px;">
- <div style="display:inline-block; width:30px;">
- line<br>
- <!-- The baseline of an inline-block is the baseline of the last in-flow line. So make
- sure the first line is also the last in-flow line :-P -->
- <div style="position:absolute;">
- line<br>
- line
- </div>
- </div><span style="margin-left:15px;">1st column</span>
- </div>
- <div style="float:left;">
- line<br>
- line<br>
- line<br>
- </div>
-</div>
-
-<hr>
-
-<p>The big text should be near the top in the first column:</p>
-<div class="mc">
- <div style="float:left; padding-left:10px; padding-top:10px; width:270px;">
- <div style="float:left; width:30px;">line<br>line<br>line</div>
- <span style="margin-left:15px;">1st column</span>
- </div>
- <div style="float:left;">
- line<br>
- line<br>
- line<br>
- </div>
-</div>
-
-<hr>
-
-<p>The big text should be at the top in the second column:</p>
-<div class="mc">
- <div style="float:left; padding-left:10px; padding-top:10px; width:270px;">
- line<br>
- line<br>
- line<br>
- </div>
- <div style="float:left; width:220px;">
- <div style="float:left; width:30px;">line<br>line<br>line</div>
- <span style="margin-left:15px;">2nd column</span>
- </div>
-</div>
-
-<hr>
-
-<p>The big text should be near the bottom in the second column:</p>
-<div class="mc">
- <div style="float:left; padding-left:10px; padding-top:10px; width:270px;">
- line<br>
- line<br>
- line<br>
- </div>
- <div style="float:left; width:200px;">
- <div style="float:left; width:30px;">line<br>line<br>line</div>
- <div style="height:35px;"></div>
- <span style="margin-left:15px;">2nd column</span>
- </div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698