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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 CSSPropertyTextAlignLast, | 166 CSSPropertyTextAlignLast, |
167 CSSPropertyTextDecoration, | 167 CSSPropertyTextDecoration, |
168 CSSPropertyTextDecorationLine, | 168 CSSPropertyTextDecorationLine, |
169 CSSPropertyTextDecorationStyle, | 169 CSSPropertyTextDecorationStyle, |
170 CSSPropertyTextDecorationColor, | 170 CSSPropertyTextDecorationColor, |
171 CSSPropertyTextJustify, | 171 CSSPropertyTextJustify, |
172 CSSPropertyTextUnderlinePosition, | 172 CSSPropertyTextUnderlinePosition, |
173 CSSPropertyTextIndent, | 173 CSSPropertyTextIndent, |
174 CSSPropertyTextRendering, | 174 CSSPropertyTextRendering, |
175 CSSPropertyTextShadow, | 175 CSSPropertyTextShadow, |
| 176 CSSPropertyTextSizeAdjust, |
176 CSSPropertyTextOverflow, | 177 CSSPropertyTextOverflow, |
177 CSSPropertyTextTransform, | 178 CSSPropertyTextTransform, |
178 CSSPropertyTop, | 179 CSSPropertyTop, |
179 CSSPropertyTouchAction, | 180 CSSPropertyTouchAction, |
180 CSSPropertyTransitionDelay, | 181 CSSPropertyTransitionDelay, |
181 CSSPropertyTransitionDuration, | 182 CSSPropertyTransitionDuration, |
182 CSSPropertyTransitionProperty, | 183 CSSPropertyTransitionProperty, |
183 CSSPropertyTransitionTimingFunction, | 184 CSSPropertyTransitionTimingFunction, |
184 CSSPropertyUnicodeBidi, | 185 CSSPropertyUnicodeBidi, |
185 CSSPropertyVerticalAlign, | 186 CSSPropertyVerticalAlign, |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); | 699 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); |
699 } | 700 } |
700 | 701 |
701 DEFINE_TRACE(CSSComputedStyleDeclaration) | 702 DEFINE_TRACE(CSSComputedStyleDeclaration) |
702 { | 703 { |
703 visitor->trace(m_node); | 704 visitor->trace(m_node); |
704 CSSStyleDeclaration::trace(visitor); | 705 CSSStyleDeclaration::trace(visitor); |
705 } | 706 } |
706 | 707 |
707 } // namespace blink | 708 } // namespace blink |
OLD | NEW |