Bug 1883861 - Part 1: Move visitMemoryBarrier into the common CodeGenerator file...
[gecko.git] / layout / style / crashtests / 448161-1.html
blobef200462b5f4867ec3193db79b2d5986a02b6cbf
1 <html class="reftest-wait">
2 <head>
3 <script type="text/javascript">
5 function boom()
7 var r = document.createRange();
8 r.setStart(document.body, 0);
9 r.setEnd(document.getElementById("g"), 0);
10 r.deleteContents();
12 // Give spell-check a chance to run
13 setTimeout(function() { document.documentElement.className = ""; },
14 50);
17 </script>
18 </head>
20 <body onload="boom();" contenteditable="true"><span><span contenteditable="true"><a href="http://www.mozilla.org/">5</a></span></span><span id="g"></span></body>
22 </html>