| 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 |
| 11 * modify it under the terms of the GNU Library General Public | 11 * modify it under the terms of the GNU Library General Public |
| 12 * License as published by the Free Software Foundation; either | 12 * License as published by the Free Software Foundation; either |
| 13 * version 2 of the License, or (at your option) any later version. | 13 * version 2 of the License, or (at your option) any later version. |
| 14 * | 14 * |
| 15 * This library is distributed in the hope that it will be useful, | 15 * This library is distributed in the hope that it will be useful, |
| 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 * Library General Public License for more details. | 18 * Library General Public License for more details. |
| 19 * | 19 * |
| 20 * You should have received a copy of the GNU Library General Public License | 20 * You should have received a copy of the GNU Library General Public License |
| 21 * along with this library; see the file COPYING.LIB. If not, write to | 21 * along with this library; see the file COPYING.LIB. If not, write to |
| 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 23 * Boston, MA 02110-1301, USA. | 23 * Boston, MA 02110-1301, USA. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/dom/Element.h" | 27 #include "core/dom/Element.h" |
| 28 | 28 |
| 29 #include "CSSValueKeywords.h" | |
| 30 #include "RuntimeEnabledFeatures.h" | |
| 31 #include "SVGNames.h" | |
| 32 #include "XMLNames.h" | |
| 33 #include "bindings/v8/Dictionary.h" | 29 #include "bindings/v8/Dictionary.h" |
| 34 #include "bindings/v8/ExceptionMessages.h" | 30 #include "bindings/v8/ExceptionMessages.h" |
| 35 #include "bindings/v8/ExceptionState.h" | 31 #include "bindings/v8/ExceptionState.h" |
| 32 #include "core/CSSValueKeywords.h" |
| 33 #include "core/SVGNames.h" |
| 34 #include "core/XMLNames.h" |
| 36 #include "core/accessibility/AXObjectCache.h" | 35 #include "core/accessibility/AXObjectCache.h" |
| 37 #include "core/animation/AnimationTimeline.h" | 36 #include "core/animation/AnimationTimeline.h" |
| 38 #include "core/animation/css/CSSAnimations.h" | 37 #include "core/animation/css/CSSAnimations.h" |
| 39 #include "core/css/CSSImageValue.h" | 38 #include "core/css/CSSImageValue.h" |
| 40 #include "core/css/CSSStyleSheet.h" | 39 #include "core/css/CSSStyleSheet.h" |
| 41 #include "core/css/CSSValuePool.h" | 40 #include "core/css/CSSValuePool.h" |
| 42 #include "core/css/PropertySetCSSStyleDeclaration.h" | 41 #include "core/css/PropertySetCSSStyleDeclaration.h" |
| 43 #include "core/css/StylePropertySet.h" | 42 #include "core/css/StylePropertySet.h" |
| 44 #include "core/css/parser/BisonCSSParser.h" | 43 #include "core/css/parser/BisonCSSParser.h" |
| 45 #include "core/css/resolver/StyleResolver.h" | 44 #include "core/css/resolver/StyleResolver.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 #include "core/html/parser/HTMLParserIdioms.h" | 93 #include "core/html/parser/HTMLParserIdioms.h" |
| 95 #include "core/inspector/InspectorInstrumentation.h" | 94 #include "core/inspector/InspectorInstrumentation.h" |
| 96 #include "core/page/FocusController.h" | 95 #include "core/page/FocusController.h" |
| 97 #include "core/page/Page.h" | 96 #include "core/page/Page.h" |
| 98 #include "core/page/PointerLockController.h" | 97 #include "core/page/PointerLockController.h" |
| 99 #include "core/rendering/RenderLayer.h" | 98 #include "core/rendering/RenderLayer.h" |
| 100 #include "core/rendering/RenderView.h" | 99 #include "core/rendering/RenderView.h" |
| 101 #include "core/rendering/compositing/RenderLayerCompositor.h" | 100 #include "core/rendering/compositing/RenderLayerCompositor.h" |
| 102 #include "core/svg/SVGDocumentExtensions.h" | 101 #include "core/svg/SVGDocumentExtensions.h" |
| 103 #include "core/svg/SVGElement.h" | 102 #include "core/svg/SVGElement.h" |
| 103 #include "platform/RuntimeEnabledFeatures.h" |
| 104 #include "platform/scroll/ScrollableArea.h" | 104 #include "platform/scroll/ScrollableArea.h" |
| 105 #include "wtf/BitVector.h" | 105 #include "wtf/BitVector.h" |
| 106 #include "wtf/HashFunctions.h" | 106 #include "wtf/HashFunctions.h" |
| 107 #include "wtf/text/CString.h" | 107 #include "wtf/text/CString.h" |
| 108 #include "wtf/text/StringBuilder.h" | 108 #include "wtf/text/StringBuilder.h" |
| 109 #include "wtf/text/TextPosition.h" | 109 #include "wtf/text/TextPosition.h" |
| 110 | 110 |
| 111 namespace WebCore { | 111 namespace WebCore { |
| 112 | 112 |
| 113 using namespace HTMLNames; | 113 using namespace HTMLNames; |
| (...skipping 3207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3321 | 3321 |
| 3322 void Element::trace(Visitor* visitor) | 3322 void Element::trace(Visitor* visitor) |
| 3323 { | 3323 { |
| 3324 if (hasRareData()) | 3324 if (hasRareData()) |
| 3325 visitor->trace(elementRareData()); | 3325 visitor->trace(elementRareData()); |
| 3326 | 3326 |
| 3327 ContainerNode::trace(visitor); | 3327 ContainerNode::trace(visitor); |
| 3328 } | 3328 } |
| 3329 | 3329 |
| 3330 } // namespace WebCore | 3330 } // namespace WebCore |
| OLD | NEW |