summaryrefslogtreecommitdiffstats
path: root/layout/reftests/first-letter/342120-1.xhtml
blob: b0de87b0f57af6e4569e4db0575e39da0fcb7a01 (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
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>

<script>

function boom ()
{
  var p = document.getElementById("p");
  var s = document.getElementById("s");
  
  s.insertBefore(document.createElement("div"), p);
  
  document.documentElement.removeAttribute("class");
}

</script>


<style>

strong:first-letter { color: red; }

</style>

</head>

<body onload="setTimeout(boom, 30);">

<div>,,, <strong id="s"><p id="p">1</p>2</strong> ...</div>

</body>

</html>