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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/spelling/spelling_after_newline.html

Issue 2455043002: Switch spelling marker from '_' to '#' in spellcheck_test (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/editing/spelling/spellcheck_test.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <script src="../../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 <script src="../assert_selection.js"></script> 4 <script src="../assert_selection.js"></script>
5 <script src="spellcheck_test.js"></script> 5 <script src="spellcheck_test.js"></script>
6 6
7 <script> 7 <script>
8 spellcheck_test( 8 spellcheck_test(
9 '<div contenteditable>|a</div>', 9 '<div contenteditable>|a</div>',
10 document => { 10 document => {
11 document.execCommand('insertText', false, 'x'); 11 document.execCommand('insertText', false, 'x');
12 document.execCommand('insertParagraph'); 12 document.execCommand('insertParagraph');
13 document.execCommand('insertText', false, 'zz '); 13 document.execCommand('insertText', false, 'zz ');
14 }, 14 },
15 '<div contenteditable>x<div>_zz_ a</div></div>', 15 '<div contenteditable>x<div>#zz# a</div></div>',
16 'Mark misspelling in new line.' 16 'Mark misspelling in new line.'
17 ); 17 );
18 </script> 18 </script>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/editing/spelling/spellcheck_test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698