| 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, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/dom/ChildListMutationScope.h" | 26 #include "core/dom/ChildListMutationScope.h" |
| 27 #include "core/dom/ContainerNodeAlgorithms.h" | 27 #include "core/dom/ContainerNodeAlgorithms.h" |
| 28 #include "core/dom/EventNames.h" | 28 #include "core/dom/EventNames.h" |
| 29 #include "core/dom/ExceptionCode.h" | 29 #include "core/dom/ExceptionCode.h" |
| 30 #include "core/dom/FullscreenController.h" | 30 #include "core/dom/FullscreenController.h" |
| 31 #include "core/dom/MutationEvent.h" | 31 #include "core/dom/MutationEvent.h" |
| 32 #include "core/dom/NodeRareData.h" | 32 #include "core/dom/NodeRareData.h" |
| 33 #include "core/dom/NodeRenderStyle.h" | 33 #include "core/dom/NodeRenderStyle.h" |
| 34 #include "core/dom/NodeTraversal.h" | 34 #include "core/dom/NodeTraversal.h" |
| 35 #include "core/html/HTMLCollection.h" | 35 #include "core/html/HTMLCollection.h" |
| 36 #include "core/page/Page.h" | |
| 37 #include "core/rendering/InlineTextBox.h" | 36 #include "core/rendering/InlineTextBox.h" |
| 38 #include "core/rendering/RenderText.h" | 37 #include "core/rendering/RenderText.h" |
| 39 #include "core/rendering/RenderTheme.h" | 38 #include "core/rendering/RenderTheme.h" |
| 40 #include "core/rendering/RenderWidget.h" | 39 #include "core/rendering/RenderWidget.h" |
| 41 #include <wtf/CurrentTime.h> | 40 #include "wtf/Vector.h" |
| 42 #include <wtf/Vector.h> | |
| 43 | 41 |
| 44 using namespace std; | 42 using namespace std; |
| 45 | 43 |
| 46 namespace WebCore { | 44 namespace WebCore { |
| 47 | 45 |
| 48 static void dispatchChildInsertionEvents(Node*); | 46 static void dispatchChildInsertionEvents(Node*); |
| 49 static void dispatchChildRemovalEvents(Node*); | 47 static void dispatchChildRemovalEvents(Node*); |
| 50 static void updateTreeAfterInsertion(ContainerNode*, Node*, AttachBehavior); | 48 static void updateTreeAfterInsertion(ContainerNode*, Node*, AttachBehavior); |
| 51 | 49 |
| 52 typedef pair<NodeCallback, RefPtr<Node> > CallbackInfo; | 50 typedef pair<NodeCallback, RefPtr<Node> > CallbackInfo; |
| (...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 return true; | 1064 return true; |
| 1067 | 1065 |
| 1068 if (node->isElementNode() && toElement(node)->shadow()) | 1066 if (node->isElementNode() && toElement(node)->shadow()) |
| 1069 return true; | 1067 return true; |
| 1070 | 1068 |
| 1071 return false; | 1069 return false; |
| 1072 } | 1070 } |
| 1073 #endif | 1071 #endif |
| 1074 | 1072 |
| 1075 } // namespace WebCore | 1073 } // namespace WebCore |
| OLD | NEW |