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

Unified Diff: LayoutTests/fast/multicol/float-content-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
Index: LayoutTests/fast/multicol/float-content-break.html
diff --git a/LayoutTests/fast/multicol/float-content-break.html b/LayoutTests/fast/multicol/float-content-break.html
new file mode 100644
index 0000000000000000000000000000000000000000..3c81e02a8ae6192ed83d595ed3a09bfb10b89ef6
--- /dev/null
+++ b/LayoutTests/fast/multicol/float-content-break.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<style>
+ .multicol {
+ width: 330px;
+ height: 200px;
+ border: 3px solid #bbb;
+ -webkit-column-gap: 10px;
+ -webkit-column-count: 2;
+ line-height: 20px;
+ }
+ .left, .right {
+ padding: 5px 5px;
+ background-color: steelblue;
+ }
+ .float_content {
+ background-color: skyblue;
+ }
+ .left { float: left; }
+ .right { float: right; }
+</style>
+
+<p>There should be two floats: one left, one right. Both should wrap into the
+ second column. The lines <em>left6</em>, <em>left7</em>,
+ <em>right6</em>, <em>right7</em> (and their backgrounds) should appear
+ <em>entirely</em> in the second column.</p>
+<div class="multicol">
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ <div class="left">
+ <span class="float_content">
+ left1<br>
+ left2<br>
+ left3<br>
+ left4<br>
+ left5<br>
+ left6<br>
+ left7<br>
+ </span>
+ </div>
+ <div class="right">
+ <span class="float_content">
+ right1<br>
+ right2<br>
+ right3<br>
+ right4<br>
+ right5<br>
+ right6<br>
+ right7<br>
+ </span>
+ </div>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+
+
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+</div>
« no previous file with comments | « LayoutTests/fast/multicol/float-break-expected.html ('k') | LayoutTests/fast/multicol/float-content-break-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698