| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/css/CSSComputedStyleDeclaration.h" | 25 #include "core/css/CSSComputedStyleDeclaration.h" |
| 26 | 26 |
| 27 #include "bindings/core/v8/ExceptionState.h" | 27 #include "bindings/core/v8/ExceptionState.h" |
| 28 #include "core/CSSPropertyNames.h" | 28 #include "core/CSSPropertyNames.h" |
| 29 #include "core/StylePropertyShorthand.h" | 29 #include "core/StylePropertyShorthand.h" |
| 30 #include "core/animation/DocumentAnimations.h" | 30 #include "core/animation/DocumentAnimations.h" |
| 31 #include "core/css/BasicShapeFunctions.h" | 31 #include "core/css/BasicShapeFunctions.h" |
| 32 #include "core/css/CSSArrayFunctionValue.h" | |
| 33 #include "core/css/CSSAspectRatioValue.h" | 32 #include "core/css/CSSAspectRatioValue.h" |
| 34 #include "core/css/CSSBorderImage.h" | 33 #include "core/css/CSSBorderImage.h" |
| 35 #include "core/css/CSSFilterValue.h" | 34 #include "core/css/CSSFilterValue.h" |
| 36 #include "core/css/CSSFontFeatureValue.h" | 35 #include "core/css/CSSFontFeatureValue.h" |
| 37 #include "core/css/CSSFontValue.h" | 36 #include "core/css/CSSFontValue.h" |
| 38 #include "core/css/CSSFunctionValue.h" | 37 #include "core/css/CSSFunctionValue.h" |
| 39 #include "core/css/CSSGridLineNamesValue.h" | 38 #include "core/css/CSSGridLineNamesValue.h" |
| 40 #include "core/css/CSSGridTemplateAreasValue.h" | 39 #include "core/css/CSSGridTemplateAreasValue.h" |
| 41 #include "core/css/CSSLineBoxContainValue.h" | 40 #include "core/css/CSSLineBoxContainValue.h" |
| 42 #include "core/css/parser/BisonCSSParser.h" | 41 #include "core/css/parser/BisonCSSParser.h" |
| (...skipping 2969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3012 return list.release(); | 3011 return list.release(); |
| 3013 } | 3012 } |
| 3014 | 3013 |
| 3015 void CSSComputedStyleDeclaration::trace(Visitor* visitor) | 3014 void CSSComputedStyleDeclaration::trace(Visitor* visitor) |
| 3016 { | 3015 { |
| 3017 visitor->trace(m_node); | 3016 visitor->trace(m_node); |
| 3018 CSSStyleDeclaration::trace(visitor); | 3017 CSSStyleDeclaration::trace(visitor); |
| 3019 } | 3018 } |
| 3020 | 3019 |
| 3021 } // namespace blink | 3020 } // namespace blink |
| OLD | NEW |