summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/495385-5-ref.html
blob: f615bc7c2d706c34458b3eb145c419bb2a8105e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>