| 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>
|
|
|