| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 CSSPropertyMarginLeft, | 129 CSSPropertyMarginLeft, |
| 130 CSSPropertyMarginRight, | 130 CSSPropertyMarginRight, |
| 131 CSSPropertyMarginTop, | 131 CSSPropertyMarginTop, |
| 132 CSSPropertyMaxHeight, | 132 CSSPropertyMaxHeight, |
| 133 CSSPropertyMaxWidth, | 133 CSSPropertyMaxWidth, |
| 134 CSSPropertyMinHeight, | 134 CSSPropertyMinHeight, |
| 135 CSSPropertyMinWidth, | 135 CSSPropertyMinWidth, |
| 136 CSSPropertyMixBlendMode, | 136 CSSPropertyMixBlendMode, |
| 137 CSSPropertyObjectFit, | 137 CSSPropertyObjectFit, |
| 138 CSSPropertyObjectPosition, | 138 CSSPropertyObjectPosition, |
| 139 CSSPropertyOffsetAnchor, |
| 139 CSSPropertyOffsetDistance, | 140 CSSPropertyOffsetDistance, |
| 140 CSSPropertyOffsetPath, | 141 CSSPropertyOffsetPath, |
| 142 CSSPropertyOffsetPosition, |
| 141 CSSPropertyOffsetRotation, | 143 CSSPropertyOffsetRotation, |
| 142 CSSPropertyOpacity, | 144 CSSPropertyOpacity, |
| 143 CSSPropertyOrphans, | 145 CSSPropertyOrphans, |
| 144 CSSPropertyOutlineColor, | 146 CSSPropertyOutlineColor, |
| 145 CSSPropertyOutlineOffset, | 147 CSSPropertyOutlineOffset, |
| 146 CSSPropertyOutlineStyle, | 148 CSSPropertyOutlineStyle, |
| 147 CSSPropertyOutlineWidth, | 149 CSSPropertyOutlineWidth, |
| 148 CSSPropertyOverflowAnchor, | 150 CSSPropertyOverflowAnchor, |
| 149 CSSPropertyOverflowWrap, | 151 CSSPropertyOverflowWrap, |
| 150 CSSPropertyOverflowX, | 152 CSSPropertyOverflowX, |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); | 698 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); |
| 697 } | 699 } |
| 698 | 700 |
| 699 DEFINE_TRACE(CSSComputedStyleDeclaration) | 701 DEFINE_TRACE(CSSComputedStyleDeclaration) |
| 700 { | 702 { |
| 701 visitor->trace(m_node); | 703 visitor->trace(m_node); |
| 702 CSSStyleDeclaration::trace(visitor); | 704 CSSStyleDeclaration::trace(visitor); |
| 703 } | 705 } |
| 704 | 706 |
| 705 } // namespace blink | 707 } // namespace blink |
| OLD | NEW |