blob: 8a3b942ca965d34e99cbe1ac73294db2e7c0f3ef [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
test(() => assert_selection(
'<div>^hello <span id="removeMe">removeMe|</span> world!</div>',
selection => {
selection.document.getElementById('removeMe').remove();
},
'<div>^hello | world!</div>'),
'Verify selection after node removal');
</script>