Bug 27131 - Disable continuous spell checking in the inspector
Summary: Disable continuous spell checking in the inspector
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All OS X 10.5
: P2 Normal
Assignee: mitz
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-09 15:08 PDT by mitz
Modified: 2009-07-13 13:13 PDT (History)
2 users (show)

See Also:


Attachments
Use the spellcheck attribute to disable continuous spell checking in the inspector (1.90 KB, patch)
2009-07-13 13:09 PDT, mitz
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description mitz 2009-07-09 15:08:14 PDT
Continuous spell checking is enabled in the inspector, but does not really make sense for JavaScript code,CSS property values and HTML attribute names. It should be disabled. I tried using spellcheck="false" but it didn’t work because I think this attribute is not checked everywhere it should be checked in the editing code.
Comment 1 mitz 2009-07-09 15:09:18 PDT
I also tried calling -[WebView setContinuousSpellCheckingEnabled:NO] in WebInspectorClient, but that sets the user default and thus affects all future WebViews in the app.
Comment 2 mitz 2009-07-13 13:09:14 PDT
Created attachment 32673 [details]
Use the spellcheck attribute to disable continuous spell checking in the inspector
Comment 3 mitz 2009-07-13 13:13:39 PDT
Fixed in <http://trac.webkit.org/changeset/45835>.