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