| Index: third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html b/third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html
|
| index f621091bd6dc44f215f22fb98c100c5c8bb0a2cf..efd394ad8432d408d247e6c5d77b4b4ee2112112 100644
|
| --- a/third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html
|
| +++ b/third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html
|
| @@ -23,8 +23,8 @@ steps.push(
|
| document.execCommand('insertText', false, 'zz.');
|
| },
|
| [
|
| - '<textarea id="textarea">_zz_.</textarea>',
|
| - '<input value="_zz_.">',
|
| + '<textarea id="textarea">#zz#.</textarea>',
|
| + '<input value="#zz#.">',
|
| '<textarea id="aux"></textarea>'
|
| ].join(''),
|
| {
|
| @@ -37,7 +37,7 @@ steps.push(
|
| sample,
|
| document => document.getElementById('aux').focus(),
|
| [
|
| - '<textarea id="textarea">_zz_.</textarea>',
|
| + '<textarea id="textarea">#zz#.</textarea>',
|
| '<input value="zz.">',
|
| '<textarea id="aux"></textarea>'
|
| ].join(''),
|
| @@ -51,8 +51,8 @@ steps.push(
|
| sample,
|
| document => document.querySelector('input').focus(),
|
| [
|
| - '<textarea id="textarea">_zz_.</textarea>',
|
| - '<input value="_zz_.">',
|
| + '<textarea id="textarea">#zz#.</textarea>',
|
| + '<input value="#zz#.">',
|
| '<textarea id="aux"></textarea>'
|
| ].join(''),
|
| 'Focusing INPUT preserves markers in TEXTAREA.'));
|
|
|