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 3264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3275 case CSSPropertyWebkitMaskRepeatX: | 3275 case CSSPropertyWebkitMaskRepeatX: |
3276 case CSSPropertyWebkitMaskRepeatY: | 3276 case CSSPropertyWebkitMaskRepeatY: |
3277 case CSSPropertyWebkitMaskSize: | 3277 case CSSPropertyWebkitMaskSize: |
3278 case CSSPropertyWebkitPerspectiveOrigin: | 3278 case CSSPropertyWebkitPerspectiveOrigin: |
3279 case CSSPropertyWebkitPerspectiveOriginX: | 3279 case CSSPropertyWebkitPerspectiveOriginX: |
3280 case CSSPropertyWebkitPerspectiveOriginY: | 3280 case CSSPropertyWebkitPerspectiveOriginY: |
3281 case CSSPropertyWebkitPrintColorAdjust: | 3281 case CSSPropertyWebkitPrintColorAdjust: |
3282 case CSSPropertyWebkitRegionBreakAfter: | 3282 case CSSPropertyWebkitRegionBreakAfter: |
3283 case CSSPropertyWebkitRegionBreakBefore: | 3283 case CSSPropertyWebkitRegionBreakBefore: |
3284 case CSSPropertyWebkitRegionBreakInside: | 3284 case CSSPropertyWebkitRegionBreakInside: |
3285 case CSSPropertyWebkitRegionOverflow: | 3285 case CSSPropertyWebkitRegionFragment: |
3286 case CSSPropertyWebkitRtlOrdering: | 3286 case CSSPropertyWebkitRtlOrdering: |
3287 case CSSPropertyWebkitRubyPosition: | 3287 case CSSPropertyWebkitRubyPosition: |
3288 case CSSPropertyWebkitTextCombine: | 3288 case CSSPropertyWebkitTextCombine: |
3289 #if ENABLE(CSS3_TEXT) | 3289 #if ENABLE(CSS3_TEXT) |
3290 case CSSPropertyWebkitTextAlignLast: | 3290 case CSSPropertyWebkitTextAlignLast: |
3291 case CSSPropertyWebkitTextUnderlinePosition: | 3291 case CSSPropertyWebkitTextUnderlinePosition: |
3292 #endif // CSS3_TEXT | 3292 #endif // CSS3_TEXT |
3293 case CSSPropertyWebkitTextEmphasisColor: | 3293 case CSSPropertyWebkitTextEmphasisColor: |
3294 case CSSPropertyWebkitTextEmphasisPosition: | 3294 case CSSPropertyWebkitTextEmphasisPosition: |
3295 case CSSPropertyWebkitTextEmphasisStyle: | 3295 case CSSPropertyWebkitTextEmphasisStyle: |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3739 info.addMember(m_state, "state"); | 3739 info.addMember(m_state, "state"); |
3740 | 3740 |
3741 // FIXME: move this to a place where it would be called only once? | 3741 // FIXME: move this to a place where it would be called only once? |
3742 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); | 3742 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); |
3743 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); | 3743 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); |
3744 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle, "defaultPrintStyle"
); | 3744 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle, "defaultPrintStyle"
); |
3745 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); | 3745 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); |
3746 } | 3746 } |
3747 | 3747 |
3748 } // namespace WebCore | 3748 } // namespace WebCore |
OLD | NEW |