| 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 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 CreateSVGElement = CreateElement | IsSVGFlag, | 738 CreateSVGElement = CreateElement | IsSVGFlag, |
| 739 CreateDocument = CreateContainer | InDocumentFlag, | 739 CreateDocument = CreateContainer | InDocumentFlag, |
| 740 CreateInsertionPoint = CreateHTMLElement | IsInsertionPointFlag, | 740 CreateInsertionPoint = CreateHTMLElement | IsInsertionPointFlag, |
| 741 CreateEditingText = CreateText | HasNameOrIsEditingTextFlag, | 741 CreateEditingText = CreateText | HasNameOrIsEditingTextFlag, |
| 742 }; | 742 }; |
| 743 | 743 |
| 744 Node(TreeScope*, ConstructionType); | 744 Node(TreeScope*, ConstructionType); |
| 745 | 745 |
| 746 virtual void didMoveToNewDocument(Document& oldDocument); | 746 virtual void didMoveToNewDocument(Document& oldDocument); |
| 747 | 747 |
| 748 bool addEventListenerInternal(const AtomicString& eventType, EventListener*,
const EventListenerOptions&) override; | 748 bool addEventListenerInternal(const AtomicString& eventType, EventListener*,
const AddEventListenerOptions&) override; |
| 749 bool removeEventListenerInternal(const AtomicString& eventType, EventListene
r*, const EventListenerOptions&) override; | 749 void removedEventListener(const AtomicString& eventType, const RegisteredEve
ntListener&) override; |
| 750 DispatchEventResult dispatchEventInternal(Event*) override; | 750 DispatchEventResult dispatchEventInternal(Event*) override; |
| 751 | 751 |
| 752 static void reattachWhitespaceSiblingsIfNeeded(Text* start); | 752 static void reattachWhitespaceSiblingsIfNeeded(Text* start); |
| 753 | 753 |
| 754 bool hasRareData() const { return getFlag(HasRareDataFlag); } | 754 bool hasRareData() const { return getFlag(HasRareDataFlag); } |
| 755 | 755 |
| 756 NodeRareData* rareData() const; | 756 NodeRareData* rareData() const; |
| 757 NodeRareData& ensureRareData(); | 757 NodeRareData& ensureRareData(); |
| 758 | 758 |
| 759 void setHasCustomStyleCallbacks() { setFlag(true, HasCustomStyleCallbacksFla
g); } | 759 void setHasCustomStyleCallbacks() { setFlag(true, HasCustomStyleCallbacksFla
g); } |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 } // namespace blink | 894 } // namespace blink |
| 895 | 895 |
| 896 #ifndef NDEBUG | 896 #ifndef NDEBUG |
| 897 // Outside the WebCore namespace for ease of invocation from gdb. | 897 // Outside the WebCore namespace for ease of invocation from gdb. |
| 898 void showNode(const blink::Node*); | 898 void showNode(const blink::Node*); |
| 899 void showTree(const blink::Node*); | 899 void showTree(const blink::Node*); |
| 900 void showNodePath(const blink::Node*); | 900 void showNodePath(const blink::Node*); |
| 901 #endif | 901 #endif |
| 902 | 902 |
| 903 #endif // Node_h | 903 #endif // Node_h |
| OLD | NEW |