| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #include "core/dom/MutationObserverInterestGroup.h" | 56 #include "core/dom/MutationObserverInterestGroup.h" |
| 57 #include "core/dom/MutationRecord.h" | 57 #include "core/dom/MutationRecord.h" |
| 58 #include "core/dom/NamedNodeMap.h" | 58 #include "core/dom/NamedNodeMap.h" |
| 59 #include "core/dom/NoEventDispatchAssertion.h" | 59 #include "core/dom/NoEventDispatchAssertion.h" |
| 60 #include "core/dom/NodeRenderStyle.h" | 60 #include "core/dom/NodeRenderStyle.h" |
| 61 #include "core/dom/PresentationAttributeStyle.h" | 61 #include "core/dom/PresentationAttributeStyle.h" |
| 62 #include "core/dom/PseudoElement.h" | 62 #include "core/dom/PseudoElement.h" |
| 63 #include "core/dom/RenderTreeBuilder.h" | 63 #include "core/dom/RenderTreeBuilder.h" |
| 64 #include "core/dom/ScriptableDocumentParser.h" | 64 #include "core/dom/ScriptableDocumentParser.h" |
| 65 #include "core/dom/SelectorQuery.h" | 65 #include "core/dom/SelectorQuery.h" |
| 66 #include "core/dom/StyleEngine.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" |
| 70 #include "core/dom/shadow/ShadowRoot.h" | 71 #include "core/dom/shadow/ShadowRoot.h" |
| 71 #include "core/editing/FrameSelection.h" | 72 #include "core/editing/FrameSelection.h" |
| 72 #include "core/editing/TextIterator.h" | 73 #include "core/editing/TextIterator.h" |
| 73 #include "core/editing/htmlediting.h" | 74 #include "core/editing/htmlediting.h" |
| 74 #include "core/editing/markup.h" | 75 #include "core/editing/markup.h" |
| 75 #include "core/events/EventDispatcher.h" | 76 #include "core/events/EventDispatcher.h" |
| (...skipping 3248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3324 | 3325 |
| 3325 void Element::trace(Visitor* visitor) | 3326 void Element::trace(Visitor* visitor) |
| 3326 { | 3327 { |
| 3327 if (hasRareData()) | 3328 if (hasRareData()) |
| 3328 visitor->trace(elementRareData()); | 3329 visitor->trace(elementRareData()); |
| 3329 | 3330 |
| 3330 ContainerNode::trace(visitor); | 3331 ContainerNode::trace(visitor); |
| 3331 } | 3332 } |
| 3332 | 3333 |
| 3333 } // namespace WebCore | 3334 } // namespace WebCore |
| OLD | NEW |