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 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * (C) 2007 David Smith (catfish.man@gmail.com) | 6 * (C) 2007 David Smith (catfish.man@gmail.com) |
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
8 * (C) 2007 Eric Seidel (eric@webkit.org) | 8 * (C) 2007 Eric Seidel (eric@webkit.org) |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "core/dom/ClientRectList.h" | 50 #include "core/dom/ClientRectList.h" |
51 #include "core/dom/DatasetDOMStringMap.h" | 51 #include "core/dom/DatasetDOMStringMap.h" |
52 #include "core/dom/ElementDataCache.h" | 52 #include "core/dom/ElementDataCache.h" |
53 #include "core/dom/ElementRareData.h" | 53 #include "core/dom/ElementRareData.h" |
54 #include "core/dom/ElementTraversal.h" | 54 #include "core/dom/ElementTraversal.h" |
55 #include "core/dom/ExceptionCode.h" | 55 #include "core/dom/ExceptionCode.h" |
56 #include "core/dom/FullscreenElementStack.h" | 56 #include "core/dom/FullscreenElementStack.h" |
57 #include "core/dom/MutationObserverInterestGroup.h" | 57 #include "core/dom/MutationObserverInterestGroup.h" |
58 #include "core/dom/MutationRecord.h" | 58 #include "core/dom/MutationRecord.h" |
59 #include "core/dom/NamedNodeMap.h" | 59 #include "core/dom/NamedNodeMap.h" |
| 60 #include "core/dom/NoEventDispatchAssertion.h" |
60 #include "core/dom/NodeRenderStyle.h" | 61 #include "core/dom/NodeRenderStyle.h" |
61 #include "core/dom/PresentationAttributeStyle.h" | 62 #include "core/dom/PresentationAttributeStyle.h" |
62 #include "core/dom/PseudoElement.h" | 63 #include "core/dom/PseudoElement.h" |
63 #include "core/dom/RenderTreeBuilder.h" | 64 #include "core/dom/RenderTreeBuilder.h" |
64 #include "core/dom/ScriptableDocumentParser.h" | 65 #include "core/dom/ScriptableDocumentParser.h" |
65 #include "core/dom/SelectorQuery.h" | 66 #include "core/dom/SelectorQuery.h" |
66 #include "core/dom/Text.h" | 67 #include "core/dom/Text.h" |
67 #include "core/dom/custom/CustomElement.h" | 68 #include "core/dom/custom/CustomElement.h" |
68 #include "core/dom/custom/CustomElementRegistrationContext.h" | 69 #include "core/dom/custom/CustomElementRegistrationContext.h" |
69 #include "core/dom/shadow/InsertionPoint.h" | 70 #include "core/dom/shadow/InsertionPoint.h" |
(...skipping 3231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3301 | 3302 |
3302 void Element::trace(Visitor* visitor) | 3303 void Element::trace(Visitor* visitor) |
3303 { | 3304 { |
3304 if (hasRareData()) | 3305 if (hasRareData()) |
3305 visitor->trace(elementRareData()); | 3306 visitor->trace(elementRareData()); |
3306 | 3307 |
3307 ContainerNode::trace(visitor); | 3308 ContainerNode::trace(visitor); |
3308 } | 3309 } |
3309 | 3310 |
3310 } // namespace WebCore | 3311 } // namespace WebCore |
OLD | NEW |