| Index: third_party/WebKit/LayoutTests/editing/execCommand/remove_format_with_unfocused_selection.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/remove_format_with_unfocused_selection.html b/third_party/WebKit/LayoutTests/editing/execCommand/remove_format_with_unfocused_selection.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd82712920fb275c6ca201a6d6b6ab9413df175e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/editing/execCommand/remove_format_with_unfocused_selection.html
|
| @@ -0,0 +1,25 @@
|
| +<!doctype html>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<script src="../assert_selection.js"></script>
|
| +<script>
|
| +test(() => {
|
| + assert_exists(window, 'testRunner', 'This test requires testRunner');
|
| +
|
| + assert_selection(
|
| + [
|
| + '<div contenteditable><b>^text|</b></div>',
|
| + '<a href="http://www.example.com/">link</a>'
|
| + ].join(''),
|
| + selection => {
|
| + const link = selection.document.querySelector('a');
|
| + link.focus();
|
| + testRunner.execCommand('removeFormat');
|
| + assert_equals(selection.document.activeElement, link);
|
| + },
|
| + [
|
| + '<div contenteditable><b>^text|</b></div>',
|
| + '<a href="http://www.example.com/">link</a>'
|
| + ].join(''));
|
| +}, 'RemoveFormat with unfocused selection in contenteditable div');
|
| +</script>
|
|
|