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

Unified Diff: LayoutTests/fast/multicol/vertical-rl/float-content-break-expected.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-rl/float-content-break-expected.html
diff --git a/LayoutTests/fast/multicol/vertical-rl/float-content-break-expected.html b/LayoutTests/fast/multicol/vertical-rl/float-content-break-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..db1e76da10bd266929f63e84dda5c2899caeb06e
--- /dev/null
+++ b/LayoutTests/fast/multicol/vertical-rl/float-content-break-expected.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-rl;
+ }
+ .multicol {
+ height: 330px;
+ width: 200px;
+ border: 3px solid #bbb;
+ line-height: 20px;
+ }
+ .left, .right {
+ padding: 5px 5px;
+ background-color: steelblue;
+ }
+ .float_content {
+ background-color: skyblue;
+ }
+ .left { float: left; }
+ .right { float: right; }
+ .column1, .column2 {
+ float: left;
+ height: 160px;
+ }
+ .column1 {
+ margin-bottom: 10px;
+ }
+ .column1 > .left, .column1 > .right {
+ width: 110px;
+ }
+ .column2 > .left, .column2 > .right {
+ padding-right: 0;
+ }
+</style>
+<div class="multicol">
+ <div class="column1">
+ 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>
+ </span>
+ </div>
+ <div class="right">
+ <span class="float_content">
+ right1<br>
+ right2<br>
+ right3<br>
+ right4<br>
+ right5<br>
+ </span>
+ </div>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ First<br>
+ </div>
+ <div class="column2">
+ <div class="left">
+ <span class="float_content">
+ left6<br>
+ left7<br>
+ </span>
+ </div>
+ <div class="right">
+ <span class="float_content">
+ right6<br>
+ right7<br>
+ </span>
+ </div>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ Second<br>
+ </div>
+</div>
« no previous file with comments | « LayoutTests/fast/multicol/vertical-rl/float-content-break.html ('k') | LayoutTests/fast/multicol/vertical-rl/float-edge.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698