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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/multicol/flipped-blocks-border-after-expected.html
diff --git a/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.html b/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..4834927f06f70ed180470ea335916d37618d25a3
--- /dev/null
+++ b/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<style>
+ .test { position: absolute; }
+ .pos1 { left: 50px; top: 50px;}
+ .pos2 { left: 250px; top: 50px;}
+ .pos3 { left: 50px; top: 300px;}
+ .pos4 { left: 250px; top: 300px;}
+
+ .multicol {
+ border: 0 solid black;
+ background-color: green;
+ width: 100px;
+ height: 100px;
+ }
+
+ .horizontal_bt { border-top-width: 50px; }
+ .horizontal_tb { border-bottom-width: 50px; }
+ .vertical_rl { border-left-width: 50px; }
+ .vertical_lr { border-right-width: 50px; }
+</style>
+<p>
+ There should be four green squares below, plus a large black border on one side, as
+ indicated. There should be no red.
+</p>
+<div class="test pos1">
+ <p>Border above</p>
+ <div class="multicol horizontal_bt"></div>
+</div>
+<div class="test pos2">
+ <p>Border below</p>
+ <div class="multicol horizontal_tb"></div>
+</div>
+<div class="test pos3">
+ <p>Border left</p>
+ <div class="multicol vertical_rl"></div>
+</div>
+<div class="test pos4">
+ <p>Border right</p>
+ <div class="multicol vertical_lr"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698