gecko-dev/layout/reftests/first-line/parent-style-3.html

14 строки
351 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div, p { background: green; }
div::first-line, p::first-line { background-color: red; }
span.one { background: inherit; }
span.two { background-color: inherit; }
</style>
</head>
<body>
<div><p><span class="one">One</span><span class="two">Two</span></p></div>
</body>