fune/testing/web-platform/tests/css/css-flexbox/flex-minimum-height-flex-items-013.html
David Grogan dbd3f9ad17 Bug 1681612 [wpt PR 26828] - [css-flex] Two tiny test cleanups, a=testonly
Automatic update from web-platform-tests
[css-flex] Two tiny test cleanups

1. Remove stale TestExpecations line for a test that now passes.
2. Remove 'background: green' from a test that doesn't need it to pass.

Change-Id: I072038045280d3043998b1ad8b4be5d85825bc32
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2582828
Auto-Submit: David Grogan <dgrogan@chromium.org>
Reviewed-by: Christian Biesinger <cbiesinger@chromium.org>
Commit-Queue: David Grogan <dgrogan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#835717}

--

wpt-commits: 01cba8b950c08c92c36d9419d3a68d78add37281
wpt-pr: 26828
2020-12-17 13:30:48 +00:00

48 lines
937 B
HTML

<!DOCTYPE html>
<html>
<title>CSS Flexbox: min-height: auto with nested flexboxes</title>
<link rel="author" title="Google LLC" href="https://www.google.com/" />
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto" />
<link rel="issue" href="https://bugs.chromium.org/p/chromium/issues/detail?id=933931" />
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<style>
.outer {
display: flex;
flex-direction: column;
height: 20px;
width: 100px;
background: red;
}
.middle {
display: flex;
flex-direction: column;
background: green;
}
.inner {
display: flex;
flex-direction: column;
}
.tall {
width: 50px;
height: 100px;
}
</style>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="outer">
<div class="middle">
<div class="inner">
<div class="tall"></div>
</div>
</div>
</div>
</body>
</html>