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

Unified Diff: LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.html

Issue 698203003: Convert fast/multicol/unsplittable-inline-block 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/vertical-rl/unsplittable-inline-block.html
diff --git a/LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.html b/LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.html
index 64fc6792631d22515373dba73c61797eb72d1eb0..b20da4ccf65ea456b3ee96be65fea00cf8503f5f 100644
--- a/LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.html
+++ b/LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.html
@@ -1,20 +1,35 @@
-<body style="-webkit-writing-mode:vertical-rl">
-<div style="height:750px; -webkit-column-count:2; -webkit-column-rule:2px solid grey; column-count:2; column-rule:2px solid grey; border:5px solid black; padding:5px;width:300px; ">
-<div style="width:250px"></div>
-<div style="display:inline-block; border:2px solid green">
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
-All of this text should be in the second column.<br>
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-rl;
+ }
+ .columns {
+ width: 300px;
+ -webkit-column-count: 2;
+ -webkit-column-gap: 0;
+ column-fill: auto;
+ border: 5px solid black;
+ padding: 5px;
+ line-height: 20px;
+ }
+ .inline_block {
+ display: inline-block;
+ border: 2px solid green;
+ }
+</style>
+<div class="columns">
+ <div style="width: 250px;"></div>
+ <div class="inline_block">
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ This should be in the second column.<br>
+ </div>
</div>
-
-</div>
-
-

Powered by Google App Engine
This is Rietveld 408576698