summaryrefslogtreecommitdiffstats
path: root/layout/reftests/first-letter/font-text-styles-floater.html
blob: b68a5579c8da830bbca1fe0af162fe253f52e658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML>
<html>
<head>
<title>Testing first-letter handling of font/text styles</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style type="text/css">
html { overflow: hidden; }
body {
  margin: 20px;
  font-size: 600%;
  line-height: 1.2em;
  font-family: serif;
}

div { width: 5em; }
p { width: 0.5em; margin: 0; font-style: italic; }
p.floatingfirst::first-letter { float: left; font-weight: bold; text-transform: uppercase; font-style: normal; }
</style>

</head>
<body>
<div>
<p class="floatingfirst">gonzo</p>
</div>
</body>
</html>