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

Unified Diff: LayoutTests/fast/multicol/vertical-lr/unsplittable-inline-block-expected.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-lr/unsplittable-inline-block-expected.html
diff --git a/LayoutTests/fast/multicol/vertical-lr/unsplittable-inline-block-expected.html b/LayoutTests/fast/multicol/vertical-lr/unsplittable-inline-block-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..13efa4c3af40ed253a65d71b1a57211efc43af5d
--- /dev/null
+++ b/LayoutTests/fast/multicol/vertical-lr/unsplittable-inline-block-expected.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<style>
+ body {
+ -webkit-writing-mode: vertical-lr;
+ }
+ .columns {
+ width: 300px;
+ border: 5px solid black;
+ padding: 5px;
+ line-height: 20px;
+ }
+ .column1, .column2 {
+ float: left;
+ height: 50%;
+ }
+ .column1 {
+ width: 100%;
+ }
+ .inline_block {
+ display: inline-block;
+ border: 2px solid green;
+ }
+</style>
+<div class="columns">
+ <div class="column1"></div>
+ <div class="column2">
+ <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