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

Unified Diff: LayoutTests/fast/multicol/margin-collapse-expected.html

Issue 696273002: Convert fast/multicol/margin-collapse 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/margin-collapse-expected.html
diff --git a/LayoutTests/fast/multicol/margin-collapse-expected.html b/LayoutTests/fast/multicol/margin-collapse-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..ef6396c2343a0f2f92de163ec85a41270cd50093
--- /dev/null
+++ b/LayoutTests/fast/multicol/margin-collapse-expected.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<style>
+.columns {
+ border:2px solid black;
+ height:300px;
+}
+.block {
+ width: calc(50% - 10px);
+ height: 200px;
+ background-color:purple;
+}
+.left { float: left; }
+.right { float: right; }
+</style>
+The two purple rectangles below should both be at the top of their columns. If one is lower than the other, than the test has failed.
+<div class="columns">
+ <div class="block left"></div>
+ <div class="block right"></div>
+</div>
« no previous file with comments | « LayoutTests/fast/multicol/margin-collapse.html ('k') | LayoutTests/platform/linux/fast/multicol/margin-collapse-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698