forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-flex] Changes to test suite after review of files (#6351) Here is a rundown of why the below changes were done: - flex-align-item-center.html: Covered by flexbox_align-items-center.html - flex-items-flexibility.html: This is covered by the flex-grow tests - flexbox_margin-left-ex.html: Update link to a more accurate location - flexbox_generated*.html: Update spec link to flex-containers like other tests - flexbox_margin-auto-overflow-2.html: It's testing the same thing as flexbox_margin-auto-overflow.html - flexbox_margin-collapse.html: Covered by flex-margin-no-collapse.html - visibility-collapse-*.html: Doesn't link to a reftest and is covered by flexbox_visibility*. -- wpt-commits: 596dc5313e991cdff16b4952be3d8c220a5a5d3a wpt-pr: 6351
22 lines
493 B
HTML
22 lines
493 B
HTML
<!DOCTYPE html>
|
|
<title>flexbox | flexcontainer via generated content</title>
|
|
<link rel="author" href="http://opera.com" title="Opera Software">
|
|
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
|
|
<link rel="match" href="flexbox_generated-flex-ref.html">
|
|
<style>
|
|
div {
|
|
background: #3366cc;
|
|
border: 1px solid black;
|
|
display: flex;
|
|
}
|
|
div::after {
|
|
content: "xxx";
|
|
background: yellow;
|
|
margin: 1em;
|
|
width: 200px;
|
|
height: 2em;
|
|
display: flex;
|
|
}
|
|
</style>
|
|
|
|
<div></div>
|