WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
VERIFIED WORKSFORME
13940
Enabling spellchecking slows down selection even when nothing is editable
https://bugs.webkit.org/show_bug.cgi?id=13940
Summary
Enabling spellchecking slows down selection even when nothing is editable
Brett Wilson (Google)
Reported
2007-05-30 14:06:23 PDT
Frame::respondToChangedSelection asks if the current webview has spellchecking enabled and then triggers a lot of extra logic involving computing ranges, adding and removing markers, checking words, etc. This happens even when the selection isn't over a form control that can have spellchecking. For example, go to a relatively complex page with few form controls like Google News. Select some text in one of the blurbs and scrub the mouse around. If isContinuousSpellCheckingEnabled returns true, the selection is dramatically slower than if it returns false.
Attachments
Add attachment
proposed patch, testcase, etc.
Justin Garcia
Comment 1
2007-05-30 16:33:25 PDT
If the selection is not editable then all we do is [from Frame.cpp]: if (RefPtr<Range> wordRange = newAdjacentWords.toRange()) document()->removeMarkers(wordRange.get(), DocumentMarker::Spelling); if (RefPtr<Range> sentenceRange = newSelectedSentence.toRange()) document()->removeMarkers(sentenceRange.get(), DocumentMarker::Grammar); Which will do very little work since the selections newSelected{Word, Sentence} are both empty. And: if (!isContinuousSpellCheckingEnabled) document()->removeMarkers(DocumentMarker::Spelling); if (!isContinuousGrammarCheckingEnabled) document()->removeMarkers(DocumentMarker::Grammar); Which will also do very little since there will be no markers. I can't reproduce the slowness you describe. Are you using the latest nightly?
Brett Wilson (Google)
Comment 2
2007-05-31 10:10:25 PDT
This is fixed when I synced, the version I was using was a little older. The old version checked isContinuousSpellCheckingEnabled and did a lot of work. The latest version now checks the selection's editableness before doing the hard part.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug