blob: bde4de69b53187531578febd1a8dd4d2aee22c37 [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
// This tests for a bug when removing links from a selection with Unlink. There
// shouldn't be any links *inside the selection* below.
selection_test(
[
'<div contenteditable>',
'<a href="http:://a.b"><div>Hel^lo</div></a>',
'<div>W|orld!</div>',
'</div>',
],
'Unlink',
[
'<div contenteditable>',
'<div><a href="http:://a.b">Hel</a>^lo</div>',
'<div>W|orld!</div>',
'</div>',
]);
</script>