tenfourfox/editor/libeditor/tests/file_select_all_without_body.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

42 lines
868 B
HTML

<html>
<head>
<script type="text/javascript">
function is(aLeft, aRight, aMessage)
{
window.opener.SimpleTest.is(aLeft, aRight, aMessage);
}
function unload()
{
window.opener.SimpleTest.finish();
}
function boom()
{
var root = document.documentElement;
while(root.firstChild) {
root.removeChild(root.firstChild);
}
root.appendChild(document.createTextNode("Mozilla"));
root.focus();
cespan = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
cespan.setAttributeNS(null, "contenteditable", "true");
root.appendChild(cespan);
try {
document.execCommand("selectAll", false, null);
} catch(e) { }
is(window.getSelection().toString(), "Mozilla",
"The nodes are not selected");
window.close();
}
window.opener.SimpleTest.waitForFocus(boom, window);
</script></head>
<body onunload="unload();"></body>
</html>