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 3788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3799 { | 3799 { |
3800 for (Range* range : m_ranges) | 3800 for (Range* range : m_ranges) |
3801 range->didSplitTextNode(oldNode); | 3801 range->didSplitTextNode(oldNode); |
3802 | 3802 |
3803 if (m_frame) | 3803 if (m_frame) |
3804 m_frame->selection().didSplitTextNode(oldNode); | 3804 m_frame->selection().didSplitTextNode(oldNode); |
3805 | 3805 |
3806 // FIXME: This should update markers for spelling and grammar checking. | 3806 // FIXME: This should update markers for spelling and grammar checking. |
3807 } | 3807 } |
3808 | 3808 |
3809 void Document::setWindowAttributeEventListener(const AtomicString& eventType, Pa
ssRefPtr<EventListener> listener) | 3809 void Document::setWindowAttributeEventListener(const AtomicString& eventType, Pa
ssRefPtrWillBeRawPtr<EventListener> listener) |
3810 { | 3810 { |
3811 LocalDOMWindow* domWindow = this->domWindow(); | 3811 LocalDOMWindow* domWindow = this->domWindow(); |
3812 if (!domWindow) | 3812 if (!domWindow) |
3813 return; | 3813 return; |
3814 domWindow->setAttributeEventListener(eventType, listener); | 3814 domWindow->setAttributeEventListener(eventType, listener); |
3815 } | 3815 } |
3816 | 3816 |
3817 EventListener* Document::getWindowAttributeEventListener(const AtomicString& eve
ntType) | 3817 EventListener* Document::getWindowAttributeEventListener(const AtomicString& eve
ntType) |
3818 { | 3818 { |
3819 LocalDOMWindow* domWindow = this->domWindow(); | 3819 LocalDOMWindow* domWindow = this->domWindow(); |
(...skipping 1989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5809 #ifndef NDEBUG | 5809 #ifndef NDEBUG |
5810 using namespace blink; | 5810 using namespace blink; |
5811 void showLiveDocumentInstances() | 5811 void showLiveDocumentInstances() |
5812 { | 5812 { |
5813 WeakDocumentSet& set = liveDocumentSet(); | 5813 WeakDocumentSet& set = liveDocumentSet(); |
5814 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5814 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5815 for (Document* document : set) | 5815 for (Document* document : set) |
5816 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5816 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5817 } | 5817 } |
5818 #endif | 5818 #endif |
OLD | NEW |