| Index: third_party/WebKit/LayoutTests/editing/deleting/delete_link_at_end_of_sentence.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-div-018.html b/third_party/WebKit/LayoutTests/editing/deleting/delete_link_at_end_of_sentence.html
|
| similarity index 53%
|
| copy from third_party/WebKit/LayoutTests/editing/inserting/insert-div-018.html
|
| copy to third_party/WebKit/LayoutTests/editing/deleting/delete_link_at_end_of_sentence.html
|
| index 580ff06eb8b51789d31c5900cd1a4abdd217f8b5..198c540f465313a9b68b427778c8b84c03953c20 100644
|
| --- a/third_party/WebKit/LayoutTests/editing/inserting/insert-div-018.html
|
| +++ b/third_party/WebKit/LayoutTests/editing/deleting/delete_link_at_end_of_sentence.html
|
| @@ -1,24 +1,19 @@
|
| <!doctype html>
|
| -<body>
|
| <script src="../../resources/testharness.js"></script>
|
| <script src="../../resources/testharnessreport.js"></script>
|
| <script src="../assert_selection.js"></script>
|
| <script>
|
| -test(() => {
|
| - assert_selection(
|
| + test(() => assert_selection(
|
| [
|
| '<div contenteditable>',
|
| - '<div style="height:12px"></div>',
|
| - 'bar|<div>baz</div>',
|
| + '<span>this is a <a href="foo">link|</a></span>',
|
| '</div>',
|
| ].join(''),
|
| - 'insertParagraph',
|
| + 'delete',
|
| [
|
| '<div contenteditable>',
|
| - '<div style="height:12px"></div>',
|
| - 'bar<div>|<br><div>baz</div></div>',
|
| + '<span>this is a <a href="foo">lin|</a></span>',,
|
| '</div>',
|
| - ].join(''),
|
| - 'Insert BR befor <div>baz</div>');
|
| -});
|
| + ].join('')),
|
| + 'Delete command should not delete A element');
|
| </script>
|
|
|