summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/477333-1.xhtml
blob: 037dfa18870f5b96e681c466a713dd23474daa86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html xmlns="http://www.w3.org/1999/xhtml" style="overflow-x: scroll">
<head>
<style type="text/css">

body:first-letter { }

</style>
<script type="text/javascript">

function boom()
{
  td = document.createElement("td");
  td.contentEditable = "true";
  document.body.appendChild(td);
  document.execCommand("strikethrough", false, null);
}

</script>
</head>

<body onload="boom();"></body>
</html>