tenfourfox/layout/reftests/bugs/495385-5-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
436 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style>
body > div { border:1px solid black; margin:1em; }
div:first-line { color:green; }
div:first-letter { color:lime; }
.f:first-letter { float:left; }
</style>
</head>
<body>
<div>Hello<br>Kitty</div>
<div class="f">Hello<br>Kitty</div>
<div>Hello<br>Kitty</div>
<div class="f">Hello<br>Kitty</div>
<div>Hello Hello<br>Kitty</div>
<div class="f">Hello Hello<br>Kitty</div>
</body>
</html>