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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2457523003: Support 'insertReplacementText' for spellcheck (Closed)
Patch Set: dtapuska's comment addressed 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/testing/Internals.idl
diff --git a/third_party/WebKit/Source/core/testing/Internals.idl b/third_party/WebKit/Source/core/testing/Internals.idl
index ed35f73dc5c49c77c1e8d2e8e3a2bcfbc8133103..c0cc7f5128fea27f4b8bb73511f7501c77d05fb5 100644
--- a/third_party/WebKit/Source/core/testing/Internals.idl
+++ b/third_party/WebKit/Source/core/testing/Internals.idl
@@ -162,9 +162,11 @@
unsigned long topPadding, unsigned long rightPadding, unsigned long bottomPadding, unsigned long leftPadding,
boolean ignoreClipping, boolean allowChildFrameContent);
- boolean hasSpellingMarker(Document document, long from, long length);
- boolean hasGrammarMarker(Document document, long from, long length);
- void setSpellCheckingEnabled(boolean enabled);
+ [RaisesException] void setSpellingMarker(Document document);
+ [RaisesException] boolean hasSpellingMarker(Document document, long from, long length);
+ [RaisesException] boolean hasGrammarMarker(Document document, long from, long length);
+ [RaisesException] void setSpellCheckingEnabled(boolean enabled);
+ [RaisesException] void replaceMisspelled(Document document, DOMString replacement);
bool canHyphenate(DOMString locale);
void setMockHyphenation(DOMString locale);

Powered by Google App Engine
This is Rietveld 408576698