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

Unified Diff: LayoutTests/fast/multicol/vertical-lr/float-avoidance-expected.html

Issue 643923003: Convert fast/multicol/float-avoidance to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use float instead of inline-block. Remove test in newmulticol/. 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-avoidance-expected.html
diff --git a/LayoutTests/fast/multicol/vertical-lr/float-avoidance-expected.html b/LayoutTests/fast/multicol/vertical-lr/float-avoidance-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..f9093865f4225bd3f1165fb1a4d4f3148b554847
--- /dev/null
+++ b/LayoutTests/fast/multicol/vertical-lr/float-avoidance-expected.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-lr;
+ }
+ .float {
+ float: left;
+ width: 100px;
+ height: 200px;
+ background-color: lime;
+ }
+ .multicol {
+ height: 400px;
+ border: 10px solid black;
+ line-height: 20px;
+ display: inline-block;
+ vertical-align: bottom;
+ }
+ .multicol > div {
+ float: left;
+ height: 200px;
+ }
+</style>
+<div class="float">
+</div>
+<div class="multicol">
+ <div>
+ First column<br>
+ First column<br>
+ First column<br>
+ First column<br>
+ First column<br>
+ </div>
+ <div>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ </div>
+</div>
« no previous file with comments | « LayoutTests/fast/multicol/vertical-lr/float-avoidance.html ('k') | LayoutTests/fast/multicol/vertical-rl/float-avoidance.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698