servo/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_generated-container.htm

29 lines
No EOL
565 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | flexcontainer vs generated content</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-container" rel="help">
<link href="reference/flexbox_generated-container-ref.htm" rel="match">
<style>
div {
background: red;
}
div div {
content: "xxx";
background: blue;
display: flex;
}
p {
background: yellow;
margin: 1em;
width: 2000px;
height: 2000px;
}
</style>
</head><body><div id="test">
<div>
<p>FAIL</p>
</div>
</div>
</body></html>