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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/justify-content-space-between.html

Issue 2692213006: [css-flexbox] Don't add extra space-between space at the end (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css3/flexbox/justify-content-space-between.html
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/justify-content-space-between.html b/third_party/WebKit/LayoutTests/css3/flexbox/justify-content-space-between.html
new file mode 100644
index 0000000000000000000000000000000000000000..3bf0ba821ae6f204759c10fa36d060a461f1d4ca
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/justify-content-space-between.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+
+<style>
+.flexbox {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+
+ min-height: 500px;
+}
+</style>
+
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../../resources/check-layout-th.js"></script>
+
+<body onload="checkLayout('.flexbox')">
+
+<div class="flexbox" data-expected-height="500">
+ <div>First item</div>
+ <div>Second item</div>
+</div>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698