| OLD | NEW |
| 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 3631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3642 SetFocusedElementDone: | 3642 SetFocusedElementDone: |
| 3643 updateRenderTreeIfNeeded(); | 3643 updateRenderTreeIfNeeded(); |
| 3644 if (LocalFrame* frame = this->frame()) | 3644 if (LocalFrame* frame = this->frame()) |
| 3645 frame->selection().didChangeFocus(); | 3645 frame->selection().didChangeFocus(); |
| 3646 return !focusChangeBlocked; | 3646 return !focusChangeBlocked; |
| 3647 } | 3647 } |
| 3648 | 3648 |
| 3649 void Document::setCSSTarget(Element* newTarget) | 3649 void Document::setCSSTarget(Element* newTarget) |
| 3650 { | 3650 { |
| 3651 if (m_cssTarget) | 3651 if (m_cssTarget) |
| 3652 m_cssTarget->didAffectSelector(AffectedSelectorTarget); | 3652 m_cssTarget->pseudoStateChanged(CSSSelector::PseudoTarget); |
| 3653 m_cssTarget = newTarget; | 3653 m_cssTarget = newTarget; |
| 3654 if (m_cssTarget) | 3654 if (m_cssTarget) |
| 3655 m_cssTarget->didAffectSelector(AffectedSelectorTarget); | 3655 m_cssTarget->pseudoStateChanged(CSSSelector::PseudoTarget); |
| 3656 } | 3656 } |
| 3657 | 3657 |
| 3658 void Document::registerNodeList(const LiveNodeListBase* list) | 3658 void Document::registerNodeList(const LiveNodeListBase* list) |
| 3659 { | 3659 { |
| 3660 #if ENABLE(OILPAN) | 3660 #if ENABLE(OILPAN) |
| 3661 m_nodeLists[list->invalidationType()].add(list); | 3661 m_nodeLists[list->invalidationType()].add(list); |
| 3662 #else | 3662 #else |
| 3663 m_nodeListCounts[list->invalidationType()]++; | 3663 m_nodeListCounts[list->invalidationType()]++; |
| 3664 #endif | 3664 #endif |
| 3665 if (list->isRootedAtDocument()) | 3665 if (list->isRootedAtDocument()) |
| (...skipping 2185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5851 using namespace blink; | 5851 using namespace blink; |
| 5852 void showLiveDocumentInstances() | 5852 void showLiveDocumentInstances() |
| 5853 { | 5853 { |
| 5854 WeakDocumentSet& set = liveDocumentSet(); | 5854 WeakDocumentSet& set = liveDocumentSet(); |
| 5855 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5855 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 5856 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { | 5856 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { |
| 5857 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); | 5857 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); |
| 5858 } | 5858 } |
| 5859 } | 5859 } |
| 5860 #endif | 5860 #endif |
| OLD | NEW |