Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<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>