| 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 16 matching lines...) Expand all Loading... |
| 27 #include "Chrome.h" | 27 #include "Chrome.h" |
| 28 #include "ChromeClient.h" | 28 #include "ChromeClient.h" |
| 29 #include "ContainerNodeAlgorithms.h" | 29 #include "ContainerNodeAlgorithms.h" |
| 30 #include "EventNames.h" | 30 #include "EventNames.h" |
| 31 #include "ExceptionCode.h" | 31 #include "ExceptionCode.h" |
| 32 #include "Frame.h" | 32 #include "Frame.h" |
| 33 #include "FrameView.h" | 33 #include "FrameView.h" |
| 34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
| 35 #include "InsertionPoint.h" | 35 #include "InsertionPoint.h" |
| 36 #include "InspectorInstrumentation.h" | 36 #include "InspectorInstrumentation.h" |
| 37 #include "MemoryCache.h" | |
| 38 #include "MutationEvent.h" | 37 #include "MutationEvent.h" |
| 39 #include "NodeRenderStyle.h" | 38 #include "NodeRenderStyle.h" |
| 40 #include "NodeTraversal.h" | 39 #include "NodeTraversal.h" |
| 41 #include "Page.h" | 40 #include "Page.h" |
| 42 #include "TemplateContentDocumentFragment.h" | 41 #include "TemplateContentDocumentFragment.h" |
| 43 #include "core/accessibility/AXObjectCache.h" | 42 #include "core/accessibility/AXObjectCache.h" |
| 43 #include "core/loader/cache/MemoryCache.h" |
| 44 #include "core/platform/graphics/FloatRect.h" | 44 #include "core/platform/graphics/FloatRect.h" |
| 45 #include "core/rendering/InlineTextBox.h" | 45 #include "core/rendering/InlineTextBox.h" |
| 46 #include "core/rendering/RenderBox.h" | 46 #include "core/rendering/RenderBox.h" |
| 47 #include "core/rendering/RenderTheme.h" | 47 #include "core/rendering/RenderTheme.h" |
| 48 #include "core/rendering/RenderWidget.h" | 48 #include "core/rendering/RenderWidget.h" |
| 49 #include "core/rendering/RootInlineBox.h" | 49 #include "core/rendering/RootInlineBox.h" |
| 50 #include <wtf/CurrentTime.h> | 50 #include <wtf/CurrentTime.h> |
| 51 #include <wtf/Vector.h> | 51 #include <wtf/Vector.h> |
| 52 | 52 |
| 53 using namespace std; | 53 using namespace std; |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 return true; | 969 return true; |
| 970 | 970 |
| 971 if (node->isElementNode() && toElement(node)->shadow()) | 971 if (node->isElementNode() && toElement(node)->shadow()) |
| 972 return true; | 972 return true; |
| 973 | 973 |
| 974 return false; | 974 return false; |
| 975 } | 975 } |
| 976 #endif | 976 #endif |
| 977 | 977 |
| 978 } // namespace WebCore | 978 } // namespace WebCore |
| OLD | NEW |