Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 503531-1.html
blob3587d85b07bdf86de215a4215accadf3dc65a166
1 <html class="reftest-wait"><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
3 <title>Testcase #1 for bug 503531</title>
4 <script>
5 function boom() {
6 var emptyText = document.createTextNode('x');
7 document.body.appendChild(emptyText);
9 var sel = window.getSelection();
10 sel.removeAllRanges();
11 var range = document.createRange();
12 range.selectNode(emptyText);
13 sel.addRange(range);
14 sel.collapseToStart();
16 emptyText.nodeValue='';
18 setTimeout(function(){document.documentElement.className = '';}, 50)
20 </script>
21 </head>
22 <body contenteditable="true" onload="document.body.focus(); boom()">
23 <div>BLOCK</div>
24 </body>
25 </html>