gecko/layout/generic/crashtests/604314-1.html
Ehsan Akhgari 7c73e783f7 Bug 604314 - "ASSERTION: unexpected disconnected nodes"; r,a=roc
--HG--
extra : rebase_source : be7c85abe0c8c84c5663a871ee831863c4823bad
2010-10-18 23:24:39 -04:00

17 lines
247 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var sel = window.getSelection('');
sel.collapse(document.createTextNode("x"), 0);
sel.extend(document.documentElement, 0);
}
</script>
</head>
<body onload="boom();"></body>
</html>