| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 CSSPropertyMotionPath, | 139 CSSPropertyMotionPath, |
| 140 CSSPropertyMotionRotation, | 140 CSSPropertyMotionRotation, |
| 141 CSSPropertyObjectFit, | 141 CSSPropertyObjectFit, |
| 142 CSSPropertyObjectPosition, | 142 CSSPropertyObjectPosition, |
| 143 CSSPropertyOpacity, | 143 CSSPropertyOpacity, |
| 144 CSSPropertyOrphans, | 144 CSSPropertyOrphans, |
| 145 CSSPropertyOutlineColor, | 145 CSSPropertyOutlineColor, |
| 146 CSSPropertyOutlineOffset, | 146 CSSPropertyOutlineOffset, |
| 147 CSSPropertyOutlineStyle, | 147 CSSPropertyOutlineStyle, |
| 148 CSSPropertyOutlineWidth, | 148 CSSPropertyOutlineWidth, |
| 149 CSSPropertyOverflowAnchor, |
| 149 CSSPropertyOverflowWrap, | 150 CSSPropertyOverflowWrap, |
| 150 CSSPropertyOverflowX, | 151 CSSPropertyOverflowX, |
| 151 CSSPropertyOverflowY, | 152 CSSPropertyOverflowY, |
| 152 CSSPropertyPaddingBottom, | 153 CSSPropertyPaddingBottom, |
| 153 CSSPropertyPaddingLeft, | 154 CSSPropertyPaddingLeft, |
| 154 CSSPropertyPaddingRight, | 155 CSSPropertyPaddingRight, |
| 155 CSSPropertyPaddingTop, | 156 CSSPropertyPaddingTop, |
| 156 CSSPropertyPointerEvents, | 157 CSSPropertyPointerEvents, |
| 157 CSSPropertyPosition, | 158 CSSPropertyPosition, |
| 158 CSSPropertyResize, | 159 CSSPropertyResize, |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); | 700 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); |
| 700 } | 701 } |
| 701 | 702 |
| 702 DEFINE_TRACE(CSSComputedStyleDeclaration) | 703 DEFINE_TRACE(CSSComputedStyleDeclaration) |
| 703 { | 704 { |
| 704 visitor->trace(m_node); | 705 visitor->trace(m_node); |
| 705 CSSStyleDeclaration::trace(visitor); | 706 CSSStyleDeclaration::trace(visitor); |
| 706 } | 707 } |
| 707 | 708 |
| 708 } // namespace blink | 709 } // namespace blink |
| OLD | NEW |