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

Side by Side Diff: LayoutTests/fast/multicol/flipped-blocks-border-after-expected.html

Issue 669603003: Convert fast/multicol/flipped-blocks-border-after to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep 50px border, it was probably that large for a reason. Created 6 years, 2 months 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 .test { position: absolute; }
4 .pos1 { left: 50px; top: 50px;}
5 .pos2 { left: 250px; top: 50px;}
6 .pos3 { left: 50px; top: 300px;}
7 .pos4 { left: 250px; top: 300px;}
8
9 .multicol {
10 border: 0 solid black;
11 background-color: green;
12 width: 100px;
13 height: 100px;
14 }
15
16 .horizontal_bt { border-top-width: 50px; }
17 .horizontal_tb { border-bottom-width: 50px; }
18 .vertical_rl { border-left-width: 50px; }
19 .vertical_lr { border-right-width: 50px; }
20 </style>
21 <p>
22 There should be four green squares below, plus a large black border on one s ide, as
23 indicated. There should be no red.
24 </p>
25 <div class="test pos1">
26 <p>Border above</p>
27 <div class="multicol horizontal_bt"></div>
28 </div>
29 <div class="test pos2">
30 <p>Border below</p>
31 <div class="multicol horizontal_tb"></div>
32 </div>
33 <div class="test pos3">
34 <p>Border left</p>
35 <div class="multicol vertical_rl"></div>
36 </div>
37 <div class="test pos4">
38 <p>Border right</p>
39 <div class="multicol vertical_lr"></div>
40 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698