| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 #include "core/html/HTMLFormControlsCollection.h" | 97 #include "core/html/HTMLFormControlsCollection.h" |
| 98 #include "core/html/HTMLFrameElementBase.h" | 98 #include "core/html/HTMLFrameElementBase.h" |
| 99 #include "core/html/HTMLFrameOwnerElement.h" | 99 #include "core/html/HTMLFrameOwnerElement.h" |
| 100 #include "core/html/HTMLOptionsCollection.h" | 100 #include "core/html/HTMLOptionsCollection.h" |
| 101 #include "core/html/HTMLPlugInElement.h" | 101 #include "core/html/HTMLPlugInElement.h" |
| 102 #include "core/html/HTMLTableRowsCollection.h" | 102 #include "core/html/HTMLTableRowsCollection.h" |
| 103 #include "core/html/HTMLTemplateElement.h" | 103 #include "core/html/HTMLTemplateElement.h" |
| 104 #include "core/html/parser/HTMLParserIdioms.h" | 104 #include "core/html/parser/HTMLParserIdioms.h" |
| 105 #include "core/inspector/InspectorInstrumentation.h" | 105 #include "core/inspector/InspectorInstrumentation.h" |
| 106 #include "core/layout/Layer.h" | 106 #include "core/layout/Layer.h" |
| 107 #include "core/layout/LayoutTextFragment.h" |
| 107 #include "core/layout/LayoutView.h" | 108 #include "core/layout/LayoutView.h" |
| 108 #include "core/layout/compositing/LayerCompositor.h" | 109 #include "core/layout/compositing/LayerCompositor.h" |
| 109 #include "core/page/Chrome.h" | 110 #include "core/page/Chrome.h" |
| 110 #include "core/page/ChromeClient.h" | 111 #include "core/page/ChromeClient.h" |
| 111 #include "core/page/FocusController.h" | 112 #include "core/page/FocusController.h" |
| 112 #include "core/page/Page.h" | 113 #include "core/page/Page.h" |
| 113 #include "core/page/PointerLockController.h" | 114 #include "core/page/PointerLockController.h" |
| 114 #include "core/page/SpatialNavigation.h" | 115 #include "core/page/SpatialNavigation.h" |
| 115 #include "core/rendering/RenderTextFragment.h" | |
| 116 #include "core/svg/SVGDocumentExtensions.h" | 116 #include "core/svg/SVGDocumentExtensions.h" |
| 117 #include "core/svg/SVGElement.h" | 117 #include "core/svg/SVGElement.h" |
| 118 #include "platform/EventDispatchForbiddenScope.h" | 118 #include "platform/EventDispatchForbiddenScope.h" |
| 119 #include "platform/RuntimeEnabledFeatures.h" | 119 #include "platform/RuntimeEnabledFeatures.h" |
| 120 #include "platform/UserGestureIndicator.h" | 120 #include "platform/UserGestureIndicator.h" |
| 121 #include "platform/scroll/ScrollableArea.h" | 121 #include "platform/scroll/ScrollableArea.h" |
| 122 #include "wtf/BitVector.h" | 122 #include "wtf/BitVector.h" |
| 123 #include "wtf/HashFunctions.h" | 123 #include "wtf/HashFunctions.h" |
| 124 #include "wtf/text/CString.h" | 124 #include "wtf/text/CString.h" |
| 125 #include "wtf/text/StringBuilder.h" | 125 #include "wtf/text/StringBuilder.h" |
| (...skipping 3255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3381 { | 3381 { |
| 3382 #if ENABLE(OILPAN) | 3382 #if ENABLE(OILPAN) |
| 3383 if (hasRareData()) | 3383 if (hasRareData()) |
| 3384 visitor->trace(elementRareData()); | 3384 visitor->trace(elementRareData()); |
| 3385 visitor->trace(m_elementData); | 3385 visitor->trace(m_elementData); |
| 3386 #endif | 3386 #endif |
| 3387 ContainerNode::trace(visitor); | 3387 ContainerNode::trace(visitor); |
| 3388 } | 3388 } |
| 3389 | 3389 |
| 3390 } // namespace blink | 3390 } // namespace blink |
| OLD | NEW |