OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1271 case CSSPropertyFloat: | 1271 case CSSPropertyFloat: |
1272 case CSSPropertyFont: | 1272 case CSSPropertyFont: |
1273 case CSSPropertyFontFamily: | 1273 case CSSPropertyFontFamily: |
1274 case CSSPropertyFontKerning: | 1274 case CSSPropertyFontKerning: |
1275 case CSSPropertyFontSize: | 1275 case CSSPropertyFontSize: |
1276 case CSSPropertyFontStretch: | 1276 case CSSPropertyFontStretch: |
1277 case CSSPropertyFontStyle: | 1277 case CSSPropertyFontStyle: |
1278 case CSSPropertyFontVariant: | 1278 case CSSPropertyFontVariant: |
1279 case CSSPropertyFontVariantCaps: | 1279 case CSSPropertyFontVariantCaps: |
1280 case CSSPropertyFontVariantLigatures: | 1280 case CSSPropertyFontVariantLigatures: |
| 1281 case CSSPropertyFontVariantNumeric: |
1281 case CSSPropertyFontWeight: | 1282 case CSSPropertyFontWeight: |
1282 case CSSPropertyLetterSpacing: | 1283 case CSSPropertyLetterSpacing: |
1283 case CSSPropertyLineHeight: | 1284 case CSSPropertyLineHeight: |
1284 case CSSPropertyMarginBottom: | 1285 case CSSPropertyMarginBottom: |
1285 case CSSPropertyMarginLeft: | 1286 case CSSPropertyMarginLeft: |
1286 case CSSPropertyMarginRight: | 1287 case CSSPropertyMarginRight: |
1287 case CSSPropertyMarginTop: | 1288 case CSSPropertyMarginTop: |
1288 case CSSPropertyPaddingBottom: | 1289 case CSSPropertyPaddingBottom: |
1289 case CSSPropertyPaddingLeft: | 1290 case CSSPropertyPaddingLeft: |
1290 case CSSPropertyPaddingRight: | 1291 case CSSPropertyPaddingRight: |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1734 visitor->trace(m_siblingRuleSet); | 1735 visitor->trace(m_siblingRuleSet); |
1735 visitor->trace(m_uncommonAttributeRuleSet); | 1736 visitor->trace(m_uncommonAttributeRuleSet); |
1736 visitor->trace(m_watchedSelectorsRules); | 1737 visitor->trace(m_watchedSelectorsRules); |
1737 visitor->trace(m_treeBoundaryCrossingScopes); | 1738 visitor->trace(m_treeBoundaryCrossingScopes); |
1738 visitor->trace(m_styleSharingLists); | 1739 visitor->trace(m_styleSharingLists); |
1739 visitor->trace(m_pendingStyleSheets); | 1740 visitor->trace(m_pendingStyleSheets); |
1740 visitor->trace(m_document); | 1741 visitor->trace(m_document); |
1741 } | 1742 } |
1742 | 1743 |
1743 } // namespace blink | 1744 } // namespace blink |
OLD | NEW |