haikuwebkit/LayoutTests/editing/inserting/insert-html-crash-01.html

28 lines
630 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../editing.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function editingTest() {
var editable = document.getElementById('editable');
editable.focus();
document.execCommand('SelectAll');
document.execCommand('InsertText', false, 'SUCCEEDED');
document.execCommand('SelectAll');
document.write("PASS. WebKit didn't crash.");
}
</script>
</head>
<body onload=runEditingTest()>
<div id="editable" contenteditable="true">
Foo
<div style="overflow:scroll;">
<div style="display:table"></div>
</div>
</div>
</body>
</html>