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

Unified Diff: LayoutTests/fast/multicol/positioned-split-expected.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-expected.html
diff --git a/LayoutTests/fast/multicol/positioned-split-expected.html b/LayoutTests/fast/multicol/positioned-split-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..b6135c267265c1c0b83b479cf8b3c24dcd1628ce
--- /dev/null
+++ b/LayoutTests/fast/multicol/positioned-split-expected.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<style>
+ .columns {
+ position: relative;
+ border: 2px solid black;
+ height: 300px;
+ line-height: 20px;
+ }
+ .abs1, .abs2 {
+ position: absolute;
+ background-color: lightgray;
+ width: 300px;
+ }
+ .abs1 {
+ height: 50px;
+ bottom: 0;
+ }
+ .abs2 {
+ left: 50%;
+ }
+</style>
+<div class="columns">
+ <div class="abs1">
+ This text should be in the first column.<br>
+ This text should be in the first column.<br>
+ </div>
+ <div class="abs2">
+ 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>

Powered by Google App Engine
This is Rietveld 408576698