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

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

Issue 2449443002: Convert editing/spelling/spelling.html with spellcheck_test (Closed)
Patch Set: Done 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 | « no previous file | third_party/WebKit/LayoutTests/editing/spelling/spelling_after_newline.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <div contenteditable id="sample">a</div>
3 <script>
4 if (window.testRunner)
5 testRunner.setMockSpellCheckerEnabled(true);
6
7 const sample = document.getElementById('sample');
8 const selection = window.getSelection();
9 selection.collapse(sample, 0);
10 document.execCommand('insertText', false, 'x');
11 document.execCommand('insertParagraph');
12 document.execCommand('insertText', false, 'zz ');
13 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/spelling/spelling_after_newline.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698