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

Unified Diff: LayoutTests/fast/multicol/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: 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-avoidance.html
diff --git a/LayoutTests/fast/multicol/float-avoidance.html b/LayoutTests/fast/multicol/float-avoidance.html
index c8e1ff22afe84f44cf53be488d82f585119a856e..f847ba42c76a965aa2eaf7418d81599b80e4d38a 100644
--- a/LayoutTests/fast/multicol/float-avoidance.html
+++ b/LayoutTests/fast/multicol/float-avoidance.html
@@ -1,7 +1,32 @@
- <div style="float:left; width:200px; height:100px; background-color:lime"></div>
- <div style="width:415px; -moz-column-width:200px; -webkit-column-width:200px;
- text-align:justify; border:10px solid black">
mstensho (USE GERRIT) 2014/10/20 20:35:02 This test is so simple that I have a hard time ant
andersr 2014/10/21 08:58:03 Unless this affects the multicol container's abili
mstensho (USE GERRIT) 2014/10/21 09:11:42 There's no test for multicol there, but that could
-<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>
+ .float {
+ float: left;
+ width: 200px;
+ height: 100px;
+ background-color: lime;
+ }
+ .multicol {
+ width: 400px;
+ -webkit-column-width: 200px;
+ -moz-column-width: 200px;
mstensho (USE GERRIT) 2014/10/20 20:35:02 You can just drop the -moz- stuff.
andersr 2014/10/21 08:58:03 Done.
+ -webkit-column-gap: 0;
+ -moz-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