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..05d60d027f09aa846d52d1a005db2eda0cbcc903 |
--- /dev/null |
+++ b/LayoutTests/css3/flexbox/columns-center-with-margins-expected.html |
@@ -0,0 +1,31 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<link href="resources/flexbox.css" rel="stylesheet"> |
+ <style> |
+ .flexbox { |
+ border: 1px solid black; |
+ width: 400px; |
+ height: 200px; |
+ } |
+ .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> |
+ <div style="-webkit-writing-mode: vertical-lr;"> |
+ <div class="flexbox column"> |
+ <div class="item1 align-self-center">centeredWithMargins</div> |
+ <div class="item2 align-self-center">centeredWithAlignSelf</div> |
+ </div> |
+ </div> |
+</body> |
+</html> |