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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align.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.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align.html b/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align.html
deleted file mode 100644
index 231edb6a68992563b30db341f35169c219700910..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/multicol/table-vertical-align.html
+++ /dev/null
@@ -1,91 +0,0 @@
-<!DOCTYPE html>
-<style>
- body { overflow: hidden; } /* Disable auto-scrollbars, to hide crbug.com/534751 */
- .mc { -webkit-columns:2; -webkit-column-gap:20px; column-fill:auto; overflow:hidden; width:520px; height:80px; font-size:12px; line-height:20px; background:#ddd; }
- table { border-spacing:5px; }
- td:first-child { width:30px; }
- td { padding:5px; }
- .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">
- <table>
- <tr style="vertical-align:baseline">
- <td>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- </td>
- <td>
- <span>1st column</span>
- </td>
- </tr>
- </table>
-</div>
-
-<hr>
-
-<p>The big text should be near the top in the first column:</p>
-<div class="mc">
- <table>
- <tr style="vertical-align:top">
- <td>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- </td>
- <td>
- <span>1st column</span>
- </td>
- </tr>
- </table>
-</div>
-
-<hr>
-
-<p>The big text should be at the top in the second column:</p>
-<div class="mc">
- <table>
- <tr style="vertical-align:middle">
- <td>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- </td>
- <td>
- <span>2nd column</span>
- </td>
- </tr>
- </table>
-</div>
-
-<hr>
-
-<p>The big text should be near the bottom in the second column:</p>
-<div class="mc">
- <table>
- <tr style="vertical-align:bottom">
- <td>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- line<br>
- </td>
- <td>
- <span>2nd column</span>
- </td>
- </tr>
- </table>
-</div>

Powered by Google App Engine
This is Rietveld 408576698