Skip to content

Commit 78bbc23

Browse files
committed
Implement AddWordToDictionary and ReplaceMisspelling in CefSharp.Offscreen
1 parent e6e85f6 commit 78bbc23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CefSharp.OffScreen/ChromiumWebBrowser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ public void CloseDevTools()
207207

208208
public void ReplaceMisspelling(string word)
209209
{
210-
throw new NotImplementedException();
210+
managedCefBrowserAdapter.ReplaceMisspelling(word);
211211
}
212212

213213
public void AddWordToDictionary(string word)
214214
{
215-
throw new NotImplementedException();
215+
managedCefBrowserAdapter.AddWordToDictionary(word);
216216
}
217217

218218
public string Address { get; set; }

0 commit comments

Comments
 (0)