blob: 0b1421b241f2e9bd933780e176bff06d83c369b3 [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
// Inserting <input> should not cause infinite loop.
selection_test(
'<div contenteditable>abc|</div>',
'InsertHTML <div><input></div>',
'<div contenteditable>abc<input>|</div>');
</script>