Home
last modified time | relevance | path

Searched refs:m_focusedElement (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp621 m_focusedElement = nullptr; in dispose()
1865 if (m_focusedElement && !m_focusedElement->isFocusable()) in updateRenderTree()
1997 if (m_focusedElement && !m_focusedElement->isFocusable()) in clearFocusedElementTimerFired()
1998 m_focusedElement->blur(); in clearFocusedElementTimerFired()
2229 m_focusedElement = nullptr; in detach()
2418 ASSERT(!m_focusedElement); in implicitOpen()
3486 if (!m_focusedElement) in removeFocusedElementOfSubtree()
3492 bool contains = node->containsIncludingShadowDOM(m_focusedElement.get()); in removeFocusedElementOfSubtree()
3493 if (contains && (m_focusedElement != node || !amongChildrenOnly)) in removeFocusedElementOfSubtree()
3558 if (m_focusedElement == newFocusedElement) in setFocusedElement()
[all …]
DDocument.h630 Element* focusedElement() const { return m_focusedElement.get(); } in focusedElement()
1239 RefPtrWillBeMember<Element> m_focusedElement; variable
/external/chromium_org/third_party/WebKit/Source/web/
DPopupListBox.cpp139 if (acceptIndex(pointToRowIndex(event.position())) && m_focusedElement) { in handleMouseReleaseEvent()
140 m_focusedElement->dispatchMouseEvent(event, EventTypeNames::mouseup); in handleMouseReleaseEvent()
141 m_focusedElement->dispatchMouseEvent(event, EventTypeNames::click); in handleMouseReleaseEvent()
145 m_focusedElement = nullptr; in handleMouseReleaseEvent()
DPopupListBox.h277 RefPtrWillBePersistent<WebCore::Element> m_focusedElement; variable
DPopupContainer.cpp217 listBox()->m_focusedElement = m_frameView->frame().document()->focusedElement(); in showPopup()