blob: ada1db04ce828064e44fbb5c9abc0cb14f53e66f [file] [log] [blame]
<script>
window.onload = function() {
if (window.layoutTestController)
layoutTestController.dumpAsText();
document.execCommand("selectall", false);
document.designMode="on";
document.execCommand("insertparagraph", false);
document.execCommand("InsertText", false);
document.firstChild.appendChild(document.createElement('body'));
document.body.innerText = "This tests executing an editing command while executing a typing command.\nPASS";
};
document.addEventListener("DOMNodeRemovedFromDocument",
function() { document.execCommand("JustifyNone", false); },true);
</script>