blob: 00917731751d1ab9f9457579cb818202c309416a [file] [log] [blame]
<html>
<head>
<title>This tests that we properly bail out of simple line layout when first-line pseudo class is present.</title>
<style>
.outer::first-line{
color: red;
}
div {
color : blue;
}
</style>
</head>
<body>
<div class=outer><div><div><div>First line has color red<br> while this second line has color blue.</div></div></div></div>
</body>
</html>