| 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. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 7 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 7 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Lesser General Public | 10 * modify it under the terms of the GNU Lesser General Public |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "core/css/CSSVariableData.h" | 35 #include "core/css/CSSVariableData.h" |
| 36 #include "core/css/ComputedStyleCSSValueMapping.h" | 36 #include "core/css/ComputedStyleCSSValueMapping.h" |
| 37 #include "core/css/parser/CSSParser.h" | 37 #include "core/css/parser/CSSParser.h" |
| 38 #include "core/css/zoomAdjustedPixelValue.h" | 38 #include "core/css/zoomAdjustedPixelValue.h" |
| 39 #include "core/dom/Document.h" | 39 #include "core/dom/Document.h" |
| 40 #include "core/dom/ExceptionCode.h" | 40 #include "core/dom/ExceptionCode.h" |
| 41 #include "core/dom/PseudoElement.h" | 41 #include "core/dom/PseudoElement.h" |
| 42 #include "core/dom/StyleEngine.h" | 42 #include "core/dom/StyleEngine.h" |
| 43 #include "core/layout/LayoutObject.h" | 43 #include "core/layout/LayoutObject.h" |
| 44 #include "core/style/ComputedStyle.h" | 44 #include "core/style/ComputedStyle.h" |
| 45 #include "wtf/text/StringBuilder.h" | 45 #include "platform/wtf/text/StringBuilder.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 namespace { | 49 namespace { |
| 50 | 50 |
| 51 // List of all properties we know how to compute, omitting shorthands. | 51 // List of all properties we know how to compute, omitting shorthands. |
| 52 // NOTE: Do not use this list, use computableProperties() instead | 52 // NOTE: Do not use this list, use computableProperties() instead |
| 53 // to respect runtime enabling of CSS properties. | 53 // to respect runtime enabling of CSS properties. |
| 54 const CSSPropertyID kComputedPropertyArray[] = { | 54 const CSSPropertyID kComputedPropertyArray[] = { |
| 55 CSSPropertyAnimationDelay, CSSPropertyAnimationDirection, | 55 CSSPropertyAnimationDelay, CSSPropertyAnimationDirection, |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 "These styles are computed, and therefore the '" + | 562 "These styles are computed, and therefore the '" + |
| 563 getPropertyNameString(id) + "' property is read-only."); | 563 getPropertyNameString(id) + "' property is read-only."); |
| 564 } | 564 } |
| 565 | 565 |
| 566 DEFINE_TRACE(CSSComputedStyleDeclaration) { | 566 DEFINE_TRACE(CSSComputedStyleDeclaration) { |
| 567 visitor->Trace(node_); | 567 visitor->Trace(node_); |
| 568 CSSStyleDeclaration::Trace(visitor); | 568 CSSStyleDeclaration::Trace(visitor); |
| 569 } | 569 } |
| 570 | 570 |
| 571 } // namespace blink | 571 } // namespace blink |
| OLD | NEW |