blob: 5e158c5560eda2716497bdc68090ce41fb3d67cd [file] [log] [blame]
<!DOCTYPE html>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
setTimeout(function() {
document.designMode="on";
document.execCommand("selectall");
document.execCommand("InsertText", false);
document.open();
document.write("This test ensures that selecting all and inserting text into a page with a frameset does not crash<br><br>PASS");
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>
<frameset><frame></frame></frameset>
</html>