blob: f30b9b4ec0d9c0738cf7f524d202b480fedbbbfc [file] [log] [blame]
<!DOCTYPE html>
<html>
<link href="resources/flexbox.css" rel="stylesheet">
<style>
.container { display: -webkit-flex }
.container::first-letter { line-height: 100px; }
p { line-height: 20px; }
</style>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.flexbox')">
<p>This test flex item should ignore container's firstLetter pseudo element.</p>
<div class="container">
<div class="flexbox">
<p data-expected-height=20>The first item.</p>
<p data-expected-height=20>The second item.</p>
</div>
</div>
</body>
</html>