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

Unified Diff: LayoutTests/fast/multicol/vertical-lr/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/vertical-lr/float-content-break.html
diff --git a/LayoutTests/fast/multicol/vertical-lr/float-content-break.html b/LayoutTests/fast/multicol/vertical-lr/float-content-break.html
new file mode 100644
index 0000000000000000000000000000000000000000..6d0114bc6534db4872d137ad477390a78e996153
--- /dev/null
+++ b/LayoutTests/fast/multicol/vertical-lr/float-content-break.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-lr;
+ }
+ .multicol {
+ height: 330px;
+ width: 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>
+<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>

Powered by Google App Engine
This is Rietveld 408576698