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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .columns {
4 position: relative;
5 border: 2px solid black;
6 height: 300px;
7 line-height: 20px;
8 }
9 .abs1, .abs2 {
10 position: absolute;
11 background-color: lightgray;
12 width: 300px;
13 }
14 .abs1 {
15 height: 50px;
16 bottom: 0;
17 }
18 .abs2 {
19 left: 50%;
20 }
21 </style>
22 <div class="columns">
23 <div class="abs1">
24 This text should be in the first column.<br>
25 This text should be in the first column.<br>
26 </div>
27 <div class="abs2">
28 This text should be in the second column.<br>
29 This text should be in the second column.<br>
30 This text should be in the second column.<br>
31 This text should be in the second column.<br>
32 </div>
33 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698