[Webkit-unassigned] [Bug 108513] [Chromium] Replace correct misspelled range

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 11 11:31:10 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=108513





--- Comment #30 from James Robinson <jamesr at chromium.org>  2013-02-11 11:33:23 PST ---
(From update of attachment 187380)
View in context: https://bugs.webkit.org/attachment.cgi?id=187380&action=review

> Source/WebKit/chromium/tests/WebFrameTest.cpp:2220
> +    SpellCheckClient spellcheck;
> +    webView->setSpellCheckClient(&spellcheck);

actually, since you have this client on the stack you need to close (aka destroy) your WebView before this class falls out of scope or you may get mysterious crashes.  Add these two lines to the bottom of this function:

m_webView->close();
m_webView = 0;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list