Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: third_party/WebKit/LayoutTests/editing/spelling/marker_preservation_with_focus_change.html

Issue 2455043002: Switch spelling marker from '_' to '#' in spellcheck_test (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.'));

Powered by Google App Engine
This is Rietveld 408576698