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

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

Issue 1047733002: Fixed mouseenter/mouseleave event firing order. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed tests. Created 5 years, 8 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, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 void setAutofocusElement(Element*); 628 void setAutofocusElement(Element*);
629 Element* autofocusElement() const { return m_autofocusElement.get(); } 629 Element* autofocusElement() const { return m_autofocusElement.get(); }
630 630
631 void setActiveHoverElement(PassRefPtrWillBeRawPtr<Element>); 631 void setActiveHoverElement(PassRefPtrWillBeRawPtr<Element>);
632 Element* activeHoverElement() const { return m_activeHoverElement.get(); } 632 Element* activeHoverElement() const { return m_activeHoverElement.get(); }
633 633
634 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false); 634 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false);
635 void hoveredNodeDetached(Node*); 635 void hoveredNodeDetached(Node*);
636 void activeChainNodeDetached(Node*); 636 void activeChainNodeDetached(Node*);
637 637
638 void updateHoverActiveState(const HitTestRequest&, Element*, const PlatformM ouseEvent* = nullptr); 638 void updateHoverActiveState(const HitTestRequest&, Element*);
639 639
640 // Updates for :target (CSS3 selector). 640 // Updates for :target (CSS3 selector).
641 void setCSSTarget(Element*); 641 void setCSSTarget(Element*);
642 Element* cssTarget() const { return m_cssTarget; } 642 Element* cssTarget() const { return m_cssTarget; }
643 643
644 void scheduleRenderTreeUpdateIfNeeded(); 644 void scheduleRenderTreeUpdateIfNeeded();
645 bool hasPendingForcedStyleRecalc() const; 645 bool hasPendingForcedStyleRecalc() const;
646 646
647 void registerNodeList(const LiveNodeListBase*); 647 void registerNodeList(const LiveNodeListBase*);
648 void unregisterNodeList(const LiveNodeListBase*); 648 void unregisterNodeList(const LiveNodeListBase*);
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1440 1440
1441 } // namespace blink 1441 } // namespace blink
1442 1442
1443 #ifndef NDEBUG 1443 #ifndef NDEBUG
1444 // Outside the WebCore namespace for ease of invocation from gdb. 1444 // Outside the WebCore namespace for ease of invocation from gdb.
1445 void showLiveDocumentInstances(); 1445 void showLiveDocumentInstances();
1446 #endif 1446 #endif
1447 1447
1448 #endif // Document_h 1448 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698