summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/23604-2.html
blob: ff62d5fc0c207d49b8b0669246e1aac058705da0 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html class="reftest-wait">
<head>
	<style type="text/css">
		body {
			font-family: sans-serif; }
		
		.a li:first-letter {
			font-family: serif;
			font-weight: bold; }
		
		.b li:first-letter {
			color: red; }
		
		.c li:first-letter {
			background: red; }
		
		.d li:first-letter {
			font-size: 1.5em; }
	</style>
 <script>
  function tweak() {
    document.body.style.background = 'lightblue';
    document.documentElement.className = "";
  }
 </script>
</head>

<body onload="tweak();">
	<ul class="a">
		<li><a>Lorem ipsum dolor sit amet</a></li>
	</ul>
	<ul class="b">
		<li><del>Lorem ipsum dolor sit amet</del></li>
	</ul>
	<ul class="c">
		<li><em>Lorem ipsum dolor sit amet</em></li>
	</ul>
	<ul class="d">
		<li><span>Lorem ipsum dolor sit amet</span></li>
	</ul>
</body>
</html>