mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
Automatic update from web-platform-tests [css-flexbox] Move vertical-align-do-not-effect-flex-items.html to WPT This CL migrates this test out of third_party/blink/web_tests/css3/flexbox and into the WPT-specific directory, adding links to the relevant specs and a test assertion describing its purpose and renames it to flex-item-vertical-align.html. Bug: 1063749 Change-Id: I1828355f072ee6c019de79a7ec0e4dafa4555841 -- wpt-commits: fc381d0a8651a83be81f74dd92fe333d4c2b8b14 wpt-pr: 22607
28 lines
890 B
HTML
28 lines
890 B
HTML
<!DOCTYPE html>
|
|
<link href="support/flexbox.css" rel="stylesheet">
|
|
<title>CSS Flexbox: vertical-align on a flex item</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline/#propdef-vertical-align">
|
|
<link rel="match" href="reference/flex-item-vertical-align-ref.html">
|
|
<meta name="assert" content="vertical-align should have no effect on a flex item, i.e. flex items' content should not be shifted by the vertical-align.">
|
|
|
|
<style>
|
|
.flexbox {
|
|
background-color: lightgrey;
|
|
}
|
|
#item1 {
|
|
vertical-align: 10px;
|
|
}
|
|
#item3 {
|
|
vertical-align: 30px;
|
|
}
|
|
</style>
|
|
|
|
<div class='flexbox'>
|
|
<!-- flex item: block child -->
|
|
<div id='item1'>block</div>
|
|
<!-- flex item: anonymous block box around inline content -->
|
|
anonymous item 2
|
|
<!-- flex item: inline child -->
|
|
<span id='item3'>item 3</span>
|
|
</div>
|