chromium/third_party/blink/web_tests/editing/deleting/5144139-2.html

<!doctype HTML>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
  selection_test(
    [ '<div contenteditable id="div">',
          '^<table contenteditable="false"><tbody>',
              '<tr><td>foo</td><td contenteditable>bar|</td><td>baz</td></tr>',
          '</tbody></table>',
      '</div>'],
    // 'Delete' command adjusts selection to ^|<table contenteditable="false">,
    // so "Delete" did nothing in the end.
    'Delete',
    [ '<div contenteditable id="div">',
          '|<table contenteditable="false"><tbody>',
              '<tr><td>foo</td><td contenteditable>bar</td><td>baz</td></tr>',
          '</tbody></table>',
      '</div>'],
    'Deleting a selection that starts just before a table and ends inside the'
+ ' table should not insert a br.');
</script>