summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/outdent-editing-host-containing-combining-diacritical-mark.html
blob: 0ed71f789b01991636a1d91efd555fd630e93bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html class="test-wait">
<head>
<meta charset="utf-8">
<title>Test for bug 499844 of Mozilla</title>
<script>
function boom()
{
  document.body.contentEditable = "true";
  getSelection().collapse(document.body.firstChild, 0);
  document.execCommand("outdent");
  document.documentElement.removeAttribute("class");
}
</script>
</head>
<body style="word-spacing: 3px;" onload="boom();"> &#x0301;</body>
</html>