| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 #include "core/dom/StyleChangeReason.h" | 71 #include "core/dom/StyleChangeReason.h" |
| 72 #include "core/dom/StyleEngine.h" | 72 #include "core/dom/StyleEngine.h" |
| 73 #include "core/dom/Text.h" | 73 #include "core/dom/Text.h" |
| 74 #include "core/dom/custom/CustomElement.h" | 74 #include "core/dom/custom/CustomElement.h" |
| 75 #include "core/dom/custom/CustomElementRegistrationContext.h" | 75 #include "core/dom/custom/CustomElementRegistrationContext.h" |
| 76 #include "core/dom/shadow/InsertionPoint.h" | 76 #include "core/dom/shadow/InsertionPoint.h" |
| 77 #include "core/dom/shadow/ShadowRoot.h" | 77 #include "core/dom/shadow/ShadowRoot.h" |
| 78 #include "core/dom/shadow/ShadowRootInit.h" | 78 #include "core/dom/shadow/ShadowRootInit.h" |
| 79 #include "core/editing/EditingUtilities.h" | 79 #include "core/editing/EditingUtilities.h" |
| 80 #include "core/editing/FrameSelection.h" | 80 #include "core/editing/FrameSelection.h" |
| 81 #include "core/editing/Serialization.h" | |
| 82 #include "core/editing/iterators/TextIterator.h" | 81 #include "core/editing/iterators/TextIterator.h" |
| 82 #include "core/editing/serializers/Serialization.h" |
| 83 #include "core/events/EventDispatcher.h" | 83 #include "core/events/EventDispatcher.h" |
| 84 #include "core/events/FocusEvent.h" | 84 #include "core/events/FocusEvent.h" |
| 85 #include "core/frame/FrameHost.h" | 85 #include "core/frame/FrameHost.h" |
| 86 #include "core/frame/FrameView.h" | 86 #include "core/frame/FrameView.h" |
| 87 #include "core/frame/LocalDOMWindow.h" | 87 #include "core/frame/LocalDOMWindow.h" |
| 88 #include "core/frame/LocalFrame.h" | 88 #include "core/frame/LocalFrame.h" |
| 89 #include "core/frame/OriginsUsingFeatures.h" | 89 #include "core/frame/OriginsUsingFeatures.h" |
| 90 #include "core/frame/ScrollToOptions.h" | 90 #include "core/frame/ScrollToOptions.h" |
| 91 #include "core/frame/Settings.h" | 91 #include "core/frame/Settings.h" |
| 92 #include "core/frame/UseCounter.h" | 92 #include "core/frame/UseCounter.h" |
| (...skipping 3405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3498 { | 3498 { |
| 3499 #if ENABLE(OILPAN) | 3499 #if ENABLE(OILPAN) |
| 3500 if (hasRareData()) | 3500 if (hasRareData()) |
| 3501 visitor->trace(elementRareData()); | 3501 visitor->trace(elementRareData()); |
| 3502 visitor->trace(m_elementData); | 3502 visitor->trace(m_elementData); |
| 3503 #endif | 3503 #endif |
| 3504 ContainerNode::trace(visitor); | 3504 ContainerNode::trace(visitor); |
| 3505 } | 3505 } |
| 3506 | 3506 |
| 3507 } // namespace blink | 3507 } // namespace blink |
| OLD | NEW |