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 14 matching lines...) Expand all Loading... |
25 | 25 |
26 #include "bindings/v8/ExceptionState.h" | 26 #include "bindings/v8/ExceptionState.h" |
27 #include "core/dom/ChildFrameDisconnector.h" | 27 #include "core/dom/ChildFrameDisconnector.h" |
28 #include "core/dom/ChildListMutationScope.h" | 28 #include "core/dom/ChildListMutationScope.h" |
29 #include "core/dom/ClassCollection.h" | 29 #include "core/dom/ClassCollection.h" |
30 #include "core/dom/ContainerNodeAlgorithms.h" | 30 #include "core/dom/ContainerNodeAlgorithms.h" |
31 #include "core/dom/ElementTraversal.h" | 31 #include "core/dom/ElementTraversal.h" |
32 #include "core/dom/ExceptionCode.h" | 32 #include "core/dom/ExceptionCode.h" |
33 #include "core/dom/FullscreenElementStack.h" | 33 #include "core/dom/FullscreenElementStack.h" |
34 #include "core/dom/NameNodeList.h" | 34 #include "core/dom/NameNodeList.h" |
| 35 #include "core/dom/NoEventDispatchAssertion.h" |
35 #include "core/dom/NodeChildRemovalTracker.h" | 36 #include "core/dom/NodeChildRemovalTracker.h" |
36 #include "core/dom/NodeRareData.h" | 37 #include "core/dom/NodeRareData.h" |
37 #include "core/dom/NodeRenderStyle.h" | 38 #include "core/dom/NodeRenderStyle.h" |
38 #include "core/dom/NodeTraversal.h" | 39 #include "core/dom/NodeTraversal.h" |
39 #include "core/dom/ScriptForbiddenScope.h" | 40 #include "core/dom/ScriptForbiddenScope.h" |
40 #include "core/dom/SelectorQuery.h" | 41 #include "core/dom/SelectorQuery.h" |
41 #include "core/dom/shadow/ElementShadow.h" | 42 #include "core/dom/shadow/ElementShadow.h" |
42 #include "core/dom/shadow/ShadowRoot.h" | 43 #include "core/dom/shadow/ShadowRoot.h" |
43 #include "core/events/MutationEvent.h" | 44 #include "core/events/MutationEvent.h" |
44 #include "core/html/HTMLCollection.h" | 45 #include "core/html/HTMLCollection.h" |
(...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 return true; | 1276 return true; |
1276 | 1277 |
1277 if (node->isElementNode() && toElement(node)->shadow()) | 1278 if (node->isElementNode() && toElement(node)->shadow()) |
1278 return true; | 1279 return true; |
1279 | 1280 |
1280 return false; | 1281 return false; |
1281 } | 1282 } |
1282 #endif | 1283 #endif |
1283 | 1284 |
1284 } // namespace WebCore | 1285 } // namespace WebCore |
OLD | NEW |