Changeset 150425 in webkit
- Timestamp:
- May 21, 2013, 12:39:20 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
testing/Internals.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r150421 r150425 1 2013-05-21 Ryosuke Niwa <rniwa@webkit.org> 2 3 REGRESSION(r150393): editing/inserting/typing-at-end-of-line.html fails 4 https://bugs.webkit.org/show_bug.cgi?id=116516 5 6 Reviewed by Antti Koivisto. 7 8 The bug was caused by DRT not resetting various auto correction states. 9 Do that in Internals::resetToConsistentState. 10 11 * testing/Internals.cpp: 12 (WebCore::Internals::resetToConsistentState): 13 1 14 2013-05-20 Zan Dobersek <zdobersek@igalia.com> 2 15 -
trunk/Source/WebCore/testing/Internals.cpp
r150263 r150425 286 286 if (!page->mainFrame()->editor().isContinuousSpellCheckingEnabled()) 287 287 page->mainFrame()->editor().toggleContinuousSpellChecking(); 288 289 #if USE(AUTOMATIC_TEXT_REPLACEMENT) 290 if (page->mainFrame()->editor().isAutomaticQuoteSubstitutionEnabled()) 291 page->mainFrame()->editor().toggleAutomaticQuoteSubstitution(); 292 if (page->mainFrame()->editor().isAutomaticLinkDetectionEnabled()) 293 page->mainFrame()->editor().toggleAutomaticLinkDetection(); 294 if (page->mainFrame()->editor().isAutomaticDashSubstitutionEnabled()) 295 page->mainFrame()->editor().toggleAutomaticDashSubstitution(); 296 if (page->mainFrame()->editor().isAutomaticTextReplacementEnabled()) 297 page->mainFrame()->editor().toggleAutomaticTextReplacement(); 298 if (!page->mainFrame()->editor().isAutomaticSpellingCorrectionEnabled()) 299 page->mainFrame()->editor().toggleAutomaticSpellingCorrection(); 300 #endif 301 288 302 if (page->mainFrame()->editor().isOverwriteModeEnabled()) 289 303 page->mainFrame()->editor().toggleOverwriteModeEnabled();
Note:
See TracChangeset
for help on using the changeset viewer.