| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 CSSPropertyListStyleType, | 120 CSSPropertyListStyleType, |
| 121 CSSPropertyMarginBottom, | 121 CSSPropertyMarginBottom, |
| 122 CSSPropertyMarginLeft, | 122 CSSPropertyMarginLeft, |
| 123 CSSPropertyMarginRight, | 123 CSSPropertyMarginRight, |
| 124 CSSPropertyMarginTop, | 124 CSSPropertyMarginTop, |
| 125 CSSPropertyMaxHeight, | 125 CSSPropertyMaxHeight, |
| 126 CSSPropertyMaxWidth, | 126 CSSPropertyMaxWidth, |
| 127 CSSPropertyMinHeight, | 127 CSSPropertyMinHeight, |
| 128 CSSPropertyMinWidth, | 128 CSSPropertyMinWidth, |
| 129 CSSPropertyMixBlendMode, | 129 CSSPropertyMixBlendMode, |
| 130 CSSPropertyMotionOffset, |
| 131 CSSPropertyMotionPath, |
| 132 CSSPropertyMotionRotation, |
| 130 CSSPropertyObjectFit, | 133 CSSPropertyObjectFit, |
| 131 CSSPropertyObjectPosition, | 134 CSSPropertyObjectPosition, |
| 132 CSSPropertyOpacity, | 135 CSSPropertyOpacity, |
| 133 CSSPropertyOrphans, | 136 CSSPropertyOrphans, |
| 134 CSSPropertyOutlineColor, | 137 CSSPropertyOutlineColor, |
| 135 CSSPropertyOutlineOffset, | 138 CSSPropertyOutlineOffset, |
| 136 CSSPropertyOutlineStyle, | 139 CSSPropertyOutlineStyle, |
| 137 CSSPropertyOutlineWidth, | 140 CSSPropertyOutlineWidth, |
| 138 CSSPropertyOverflowWrap, | 141 CSSPropertyOverflowWrap, |
| 139 CSSPropertyOverflowX, | 142 CSSPropertyOverflowX, |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); | 686 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); |
| 684 } | 687 } |
| 685 | 688 |
| 686 DEFINE_TRACE(CSSComputedStyleDeclaration) | 689 DEFINE_TRACE(CSSComputedStyleDeclaration) |
| 687 { | 690 { |
| 688 visitor->trace(m_node); | 691 visitor->trace(m_node); |
| 689 CSSStyleDeclaration::trace(visitor); | 692 CSSStyleDeclaration::trace(visitor); |
| 690 } | 693 } |
| 691 | 694 |
| 692 } // namespace blink | 695 } // namespace blink |
| OLD | NEW |