gecko-dev/testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html
Gyuyoung Kim 26c2f89c27 Bug 1626828 [wpt PR 22632] - fixup! [css-flexbox] Move stretching-orthogonal-flows.html test to WPT, a=testonly
Automatic update from web-platform-tests
fixup! [css-flexbox] Move stretching-orthogonal-flows.html test to WPT

Remove duplicated "CSS Flexbox:" prefix in the title.

Bug: 1063749
Change-Id: I5ab11216654101d71e98750e87f639c6cde9b21e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2132890
Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com>
Commit-Queue: David Grogan <dgrogan@chromium.org>
Reviewed-by: David Grogan <dgrogan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#755678}

--

wpt-commits: 00fbbb5fa4230c4c592bc5fd69ed945287411fb6
wpt-pr: 22632
2020-04-06 12:44:05 +00:00

15 lines
795 B
HTML

<!DOCTYPE html>
<title>CSS Flexbox: Stretch alignment for children with orthogonal flows</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-property">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#align-items-property">
<link rel="match" href="reference/stretching-orthogonal-flows-ref.html">
<link href="support/flexbox.css" rel="stylesheet">
<meta name="assert" content="The test ensures that the stretch alignment of flex items work
similarly with both parallel and orthogonal flows.">
<p>You should see no red.</p>
<div class="flexbox column align-items-stretch" style="background-color: red;">
<div style="background-color: green; height: 20px;"></div>
<div style="writing-mode: vertical-lr; background-color: green; height: 20px;"></div>
</div>