haikuwebkit/LayoutTests/fast/editing/insert-paragraph-with-text-...

18 lines
414 B
HTML

<style>
head, script, div {
display: table;
}
</style>
<script>
onload = () => {
if (window.testRunner)
testRunner.dumpAsText();
console.log("This test passes if it does not crash.")
document.execCommand('SelectAll');
document.execCommand('Copy');
document.execCommand('SelectAll');
document.designMode = 'on';
document.execCommand('PasteAndMatchStyle');
};
</script>