| Index: LayoutTests/css3/flexbox/columns-center-with-margins-expected.html
|
| diff --git a/LayoutTests/css3/flexbox/columns-center-with-margins-expected.html b/LayoutTests/css3/flexbox/columns-center-with-margins-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..acaeb0c3a99efdfab0f8e0ffc38dbd2f7e6aaef7
|
| --- /dev/null
|
| +++ b/LayoutTests/css3/flexbox/columns-center-with-margins-expected.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<link href="resources/flexbox.css" rel="stylesheet">
|
| + <style>
|
| + .flexbox {
|
| + border: 1px solid black;
|
| + width: 400px;
|
| + }
|
| + .item1 {
|
| + background: lightblue;
|
| + }
|
| + .item2 {
|
| + background: lime;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| + <div class="flexbox column">
|
| + <div class="item1 align-self-center">centeredWithMargins</div>
|
| + <div class="item2 align-self-center">centeredWithAlignSelf</div>
|
| + </div>
|
| +</body>
|
| +</html>
|
|
|