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

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

Issue 2734013002: Implement cold mode invocation for idle time spell checker (Closed)
Patch Set: rebased Mar 7 Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script src="../assert_selection.js"></script>
5 <script src="spellcheck_test.js"></script>
6 <script>
7 spellcheck_test(
8 '<div contenteditable>|</div>',
9 'insertText zz',
10 '<div contenteditable>zz</div>',
11 {
12 title: 'No immediate checking during typing',
13 callback: sample => spellcheck_test(
14 sample,
15 '',
16 '<div contenteditable>#zz#</div>',
17 {
18 title: 'Text is eventually checked in cold mode',
19 needsFullCheck: true
20 })
21 });
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698