Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(709)

Side by Side Diff: Source/core/dom/Document.cpp

Issue 21694005: Spell check whole content of an editable element when it gets focused. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 3178 matching lines...) Expand 10 before | Expand all | Expand 10 after
3189 // on it, probably when <rdar://problem/8503958> is resolved. 3189 // on it, probably when <rdar://problem/8503958> is resolved.
3190 oldFocusedElement->dispatchFocusOutEvent(eventNames().DOMFocusOutEvent, newFocusedElement.get()); // DOM level 2 name for compatibility. 3190 oldFocusedElement->dispatchFocusOutEvent(eventNames().DOMFocusOutEvent, newFocusedElement.get()); // DOM level 2 name for compatibility.
3191 3191
3192 if (m_focusedElement) { 3192 if (m_focusedElement) {
3193 // handler shifted focus 3193 // handler shifted focus
3194 focusChangeBlocked = true; 3194 focusChangeBlocked = true;
3195 newFocusedElement = 0; 3195 newFocusedElement = 0;
3196 } 3196 }
3197 3197
3198 if (oldFocusedElement->isRootEditableElement()) 3198 if (oldFocusedElement->isRootEditableElement())
3199 frame()->editor()->didEndEditing(); 3199 frame()->editor()->didEndEditing(oldFocusedElement.get());
3200 3200
3201 if (view()) { 3201 if (view()) {
3202 Widget* oldWidget = widgetForElement(oldFocusedElement.get()); 3202 Widget* oldWidget = widgetForElement(oldFocusedElement.get());
3203 if (oldWidget) 3203 if (oldWidget)
3204 oldWidget->setFocus(false); 3204 oldWidget->setFocus(false);
3205 else 3205 else
3206 view()->setFocus(false); 3206 view()->setFocus(false);
3207 } 3207 }
3208 } 3208 }
3209 3209
(...skipping 28 matching lines...) Expand all
3238 m_focusedElement->dispatchFocusInEvent(eventNames().DOMFocusInEvent, old FocusedElement.get()); // DOM level 2 for compatibility. 3238 m_focusedElement->dispatchFocusInEvent(eventNames().DOMFocusInEvent, old FocusedElement.get()); // DOM level 2 for compatibility.
3239 3239
3240 if (m_focusedElement != newFocusedElement) { 3240 if (m_focusedElement != newFocusedElement) {
3241 // handler shifted focus 3241 // handler shifted focus
3242 focusChangeBlocked = true; 3242 focusChangeBlocked = true;
3243 goto SetFocusedElementDone; 3243 goto SetFocusedElementDone;
3244 } 3244 }
3245 m_focusedElement->setFocus(true); 3245 m_focusedElement->setFocus(true);
3246 3246
3247 if (m_focusedElement->isRootEditableElement()) 3247 if (m_focusedElement->isRootEditableElement())
3248 frame()->editor()->didBeginEditing(); 3248 frame()->editor()->didBeginEditing(m_focusedElement.get());
3249 3249
3250 // eww, I suck. set the qt focus correctly 3250 // eww, I suck. set the qt focus correctly
3251 // ### find a better place in the code for this 3251 // ### find a better place in the code for this
3252 if (view()) { 3252 if (view()) {
3253 Widget* focusWidget = widgetForElement(m_focusedElement.get()); 3253 Widget* focusWidget = widgetForElement(m_focusedElement.get());
3254 if (focusWidget) { 3254 if (focusWidget) {
3255 // Make sure a widget has the right size before giving it focus. 3255 // Make sure a widget has the right size before giving it focus.
3256 // Otherwise, we are testing edge cases of the Widget code. 3256 // Otherwise, we are testing edge cases of the Widget code.
3257 // Specifically, in WebCore this does not work well for text fie lds. 3257 // Specifically, in WebCore this does not work well for text fie lds.
3258 updateLayout(); 3258 updateLayout();
(...skipping 1851 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 { 5110 {
5111 return DocumentLifecycleNotifier::create(this); 5111 return DocumentLifecycleNotifier::create(this);
5112 } 5112 }
5113 5113
5114 DocumentLifecycleNotifier* Document::lifecycleNotifier() 5114 DocumentLifecycleNotifier* Document::lifecycleNotifier()
5115 { 5115 {
5116 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier()); 5116 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier());
5117 } 5117 }
5118 5118
5119 } // namespace WebCore 5119 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698