summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/503531-1.html
blob: 3587d85b07bdf86de215a4215accadf3dc65a166 (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
<html class="reftest-wait"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Testcase #1 for bug 503531</title>
<script>
function boom() {
  var emptyText = document.createTextNode('x');
  document.body.appendChild(emptyText);

  var sel = window.getSelection();
  sel.removeAllRanges();
  var range = document.createRange();
  range.selectNode(emptyText);
  sel.addRange(range);
  sel.collapseToStart();

  emptyText.nodeValue='';
  
  setTimeout(function(){document.documentElement.className = '';}, 50)
}
</script>
</head>
<body contenteditable="true" onload="document.body.focus(); boom()">
<div>BLOCK</div>
</body>
</html>