Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / flexbox-ignore-firstLine.html
blob2621d2e63673d2c608117b49928905a365a458e9
1 <!DOCTYPE html>
2 <html>
3 <link href="resources/flexbox.css" rel="stylesheet">
4 <style>
5 div::first-line { line-height: 100px; }
6 p { line-height: 20px; }
7 </style>
9 <script src="../../resources/check-layout.js"></script>
10 <body onload="checkLayout('.flexbox')">
11 <p>This test flex item should ignore flex container's firstLine pseudo element.</p>
13 <div class="flexbox">
14 <p data-expected-height=20>The first item.</p>
15 <p data-expected-height=20>The second item.</p>
16 </div>
17 </body>
18 </html>