forked from mirrors/gecko-dev
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
17 lines
355 B
HTML
17 lines
355 B
HTML
<!DOCTYPE html>
|
|
<link href="../support/flexbox.css" rel="stylesheet">
|
|
|
|
<style>
|
|
.flexbox {
|
|
background-color: lightgrey;
|
|
}
|
|
</style>
|
|
|
|
<div class='flexbox'>
|
|
<!-- flex item: block child -->
|
|
<div>block</div>
|
|
<!-- flex item: anonymous block box around inline content -->
|
|
anonymous item 2
|
|
<!-- flex item: inline child -->
|
|
<span>item 3</span>
|
|
</div>
|