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

Unified Diff: LayoutTests/fast/multicol/vertical-lr/float-avoidance.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.html
diff --git a/LayoutTests/fast/multicol/vertical-lr/float-avoidance.html b/LayoutTests/fast/multicol/vertical-lr/float-avoidance.html
index 62f3e273387b76059d99d914e980dc1125da9bd2..cc523b7a8673958ca74c3933aa715851de3b2398 100644
--- a/LayoutTests/fast/multicol/vertical-lr/float-avoidance.html
+++ b/LayoutTests/fast/multicol/vertical-lr/float-avoidance.html
@@ -1,8 +1,33 @@
-<body style="-webkit-writing-mode:vertical-lr">
- <div style="float:left; width:100px; height:200px; background-color:lime"></div>
- <div style="height:415px; -moz-column-width:200px; -webkit-column-width:200px;
- text-align:justify; border:10px solid black">
-<p>This technology preview of our award winning next generation browser
- is a sign of things to come from Mozilla. Powerful yet easy to use. This
- maintenance release provides a few updates based on user feedback - including
- changes to the Extension System and icon improvements.
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-lr;
+ }
+ .float {
+ float: left;
+ width: 100px;
+ height: 200px;
+ background-color: lime;
+ }
+ .multicol {
+ height: 400px;
+ -webkit-column-width: 200px;
+ -webkit-column-gap: 0;
+ border: 10px solid black;
+ line-height: 20px;
+ }
+</style>
+<div class="float">
+</div>
+<div class="multicol">
+ First column<br>
+ First column<br>
+ First column<br>
+ First column<br>
+ First column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+</div>

Powered by Google App Engine
This is Rietveld 408576698