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