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

Unified Diff: LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll.html

Issue 417153003: Invalid height of column flex children with overflow: scroll (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 | LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/column-flex-child-with-overflow-scroll-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698