Files
UXP-Fixed/layout/generic/crashtests/604314-1.html
T
2018-02-02 04:16:08 -05: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>