Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/html/reference/flexbox_generated-ref.htm

26 lines
432 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | flexcontainer vs generated content</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
div {
background: #3366cc;
height: 4em;
}
div::after, p {
content: "xxx";
background: yellow;
margin: 1em;
width: 200px;
height: 2em;
float: left;
}
div::after {
content: "yyy";
display: block;
}
</style>
</head><body><div>
<p>FAIL</p>
</div>
</body></html>