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

Unified Diff: LayoutTests/fast/multicol/positioned-split.html

Issue 702093002: Convert fast/multicol/positioned-split to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/positioned-split.html
diff --git a/LayoutTests/fast/multicol/positioned-split.html b/LayoutTests/fast/multicol/positioned-split.html
index d869f08e544bc8b46604485c7ead478dede3a853..561555815ffa6830337556be6dd70f8d9290a7fc 100644
--- a/LayoutTests/fast/multicol/positioned-split.html
+++ b/LayoutTests/fast/multicol/positioned-split.html
@@ -1,13 +1,33 @@
-<div style="-webkit-column-count:2; column-count:2; column-fill:auto; border:2px solid black; height:300px;">
-<div style="height:250px"></div>
-<div style="position:relative">
-<div style="position:absolute;height:200px;width:300px;background-color:lightgray">
-This text should paginate across the columns.<br>
-This text should paginate across the columns.<br>
-This text should paginate across the columns.<br>
-This text should paginate across the columns.<br>
-This text should paginate across the columns.<br>
-</div>
-</div>
-<div style="height:250px"></div>
+<!DOCTYPE html>
+<style>
+ .columns {
+ -webkit-column-count: 2;
+ -webkit-column-gap: 0;
+ column-fill: auto;
+ border: 2px solid black;
+ height: 300px;
+ line-height: 20px;
+ }
+ .relative {
+ height: 250px;
+ position: relative;
+ }
+ .absolute {
+ position: absolute;
+ width: 300px;
+ background-color: lightgray;
+ }
+</style>
+<div class="columns">
+ <div style="height: 250px"></div>
+ <div class="relative">
+ <div class="absolute">
+ This text should be in the first column.<br>
+ This text should be in the first column.<br>
+ This text should be in the second column.<br>
+ This text should be in the second column.<br>
+ This text should be in the second column.<br>
+ This text should be in the second column.<br>
+ </div>
+ </div>
</div>

Powered by Google App Engine
This is Rietveld 408576698