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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 CSSPropertyStrokeLinecap, | 317 CSSPropertyStrokeLinecap, |
318 CSSPropertyStrokeLinejoin, | 318 CSSPropertyStrokeLinejoin, |
319 CSSPropertyStrokeMiterlimit, | 319 CSSPropertyStrokeMiterlimit, |
320 CSSPropertyStrokeOpacity, | 320 CSSPropertyStrokeOpacity, |
321 CSSPropertyStrokeWidth, | 321 CSSPropertyStrokeWidth, |
322 CSSPropertyAlignmentBaseline, | 322 CSSPropertyAlignmentBaseline, |
323 CSSPropertyBaselineShift, | 323 CSSPropertyBaselineShift, |
324 CSSPropertyDominantBaseline, | 324 CSSPropertyDominantBaseline, |
325 CSSPropertyTextAnchor, | 325 CSSPropertyTextAnchor, |
326 CSSPropertyWritingMode, | 326 CSSPropertyWritingMode, |
327 CSSPropertyGlyphOrientationHorizontal, | |
328 CSSPropertyGlyphOrientationVertical, | |
329 CSSPropertyVectorEffect, | 327 CSSPropertyVectorEffect, |
330 CSSPropertyPaintOrder, | 328 CSSPropertyPaintOrder, |
331 CSSPropertyCx, | 329 CSSPropertyCx, |
332 CSSPropertyCy, | 330 CSSPropertyCy, |
333 CSSPropertyX, | 331 CSSPropertyX, |
334 CSSPropertyY, | 332 CSSPropertyY, |
335 CSSPropertyR, | 333 CSSPropertyR, |
336 CSSPropertyRx, | 334 CSSPropertyRx, |
337 CSSPropertyRy, | 335 CSSPropertyRy, |
338 CSSPropertyScrollSnapType, | 336 CSSPropertyScrollSnapType, |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); | 682 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a
re computed, and therefore the '" + getPropertyNameString(id) + "' property is r
ead-only."); |
685 } | 683 } |
686 | 684 |
687 DEFINE_TRACE(CSSComputedStyleDeclaration) | 685 DEFINE_TRACE(CSSComputedStyleDeclaration) |
688 { | 686 { |
689 visitor->trace(m_node); | 687 visitor->trace(m_node); |
690 CSSStyleDeclaration::trace(visitor); | 688 CSSStyleDeclaration::trace(visitor); |
691 } | 689 } |
692 | 690 |
693 } // namespace blink | 691 } // namespace blink |
OLD | NEW |