Index: LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll.html |
diff --git a/LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll.html b/LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..77e93a56572d8a8f22133ebe45584c40a24b9994 |
--- /dev/null |
+++ b/LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll.html |
@@ -0,0 +1,32 @@ |
+<!DOCTYPE html> |
+<html> |
+<link href="resources/flexbox.css" rel="stylesheet"> |
+<style> |
+div { |
+ box-sizing: border-box; |
+} |
+ |
+.scroll { |
+ overflow: scroll; |
+} |
+ |
+.box { |
+ width: 100px; |
+ height: 75px; |
+ padding: 5px; |
+ border: 2px solid red; |
+} |
+</style> |
+<script src="../../resources/check-layout.js"></script> |
+<body onload="checkLayout('.flexbox')"> |
+<div class="flexbox column"> |
+ <div class="box" data-expected-width="100" data-expected-height="75"></div> |
+ <div class="box scroll" id="box2" data-expected-width="100" data-expected-height="75"></div> |
+</div> |
+ |
+<div class="flexbox column-reverse"> |
+ <div class="box" data-expected-width="100" data-expected-height="75"></div> |
+ <div class="box scroll" id="box4" data-expected-width="100" data-expected-height="75"></div> |
+</div> |
+</body> |
+</html> |