gecko/layout/reftests/flexbox/flexbox-with-pseudo-elements-3-ref.html
Daniel Holbert 1cbf3e8acf Bug 873172: When checking whether a flex item is generated content, skip past any anonymous boxes around it. r=bz
--HG--
rename : layout/reftests/flexbox/flexbox-with-pseudo-elements-1-ref.html => layout/reftests/flexbox/flexbox-with-pseudo-elements-3-ref.html
rename : layout/reftests/flexbox/flexbox-with-pseudo-elements-1.html => layout/reftests/flexbox/flexbox-with-pseudo-elements-3.html
2013-05-19 11:37:56 +08:00

56 lines
1.1 KiB
HTML

<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!-- Reference case where we've swapped in actual divs (fakeBefore/fakeAfter)
for the testcase's ::before and ::after generated content.
fakeBefore div is always the first child; fakeAfter is always the last.
-->
<html>
<head>
<meta charset="utf-8">
<style>
.flexContainer {
display: flex;
align-items: flex-end;
justify-content: space-between;
height: 50px;
width: 300px;
margin-bottom: 2px;
background: lightgray;
}
.fakeBefore {
content: 'b';
background: yellow;
}
.fakeAfter {
content: 'a';
background: lightblue;
}
</style>
</head>
<body>
<div class="flexContainer">
<div class="fakeBefore">b</div>
x
<div>y</div>
z
</div>
<div class="flexContainer">
x
<div>y</div>
z
<div class="fakeAfter">a</div>
</div>
<div class="flexContainer">
<div class="fakeBefore">b</div>
x
<div>y</div>
z
<div class="fakeAfter">a</div>
</div>
</body>
</html>