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

Unified Diff: LayoutTests/fast/multicol/float-break.html

Issue 675433002: Split fast/multicol/float-multicol into smaller tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixup vertical-rl. Created 6 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/float-break-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/float-break.html
diff --git a/LayoutTests/fast/multicol/float-break.html b/LayoutTests/fast/multicol/float-break.html
new file mode 100644
index 0000000000000000000000000000000000000000..a59c020cf286c70061a370b4b9f360a0612d8852
--- /dev/null
+++ b/LayoutTests/fast/multicol/float-break.html
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+<style>
+ .multicol {
+ width: 500px;
+ height: 200px;
+ border: 3px solid black;
+ -webkit-column-gap: 10px;
+ -webkit-column-count: 3;
+ line-height: 20px;
+ }
+ .left, .right {
+ padding: 10px 0;
+ width: 40px;
+ text-align: center;
+ box-sizing: border-box;
+ }
+ .left { float: left; }
+ .right { float: right; }
+ .tall { height: 220px; }
+ .xtall { height: 420px; }
+ .blue1 { background-color: skyblue; }
+ .blue2 { background-color: dodgerblue; }
+ .blue3 { background-color: steelblue; }
+</style>
+
+<p>There should be three tall floats, each of which should extend
+ into the next column (F2, F3) or into all columns (F1).</p>
+<div class="multicol">
+ First<br>
+ First<br>
+ <div class="right tall blue1">F2</div>
+ First<br>
+ First<br>
+ <div class="left xtall blue2">F1</div>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+
+ Second<br>
+ Second<br>
+ <div class="left tall blue3">F3</div>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+ Third<br>
+</div>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/float-break-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698