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 3254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3265 case CSSPropertyWebkitPrintColorAdjust: | 3265 case CSSPropertyWebkitPrintColorAdjust: |
3266 case CSSPropertyWebkitRegionBreakAfter: | 3266 case CSSPropertyWebkitRegionBreakAfter: |
3267 case CSSPropertyWebkitRegionBreakBefore: | 3267 case CSSPropertyWebkitRegionBreakBefore: |
3268 case CSSPropertyWebkitRegionBreakInside: | 3268 case CSSPropertyWebkitRegionBreakInside: |
3269 case CSSPropertyWebkitRegionFragment: | 3269 case CSSPropertyWebkitRegionFragment: |
3270 case CSSPropertyWebkitRtlOrdering: | 3270 case CSSPropertyWebkitRtlOrdering: |
3271 case CSSPropertyWebkitRubyPosition: | 3271 case CSSPropertyWebkitRubyPosition: |
3272 case CSSPropertyWebkitTextCombine: | 3272 case CSSPropertyWebkitTextCombine: |
3273 #if ENABLE(CSS3_TEXT) | 3273 #if ENABLE(CSS3_TEXT) |
3274 case CSSPropertyWebkitTextAlignLast: | 3274 case CSSPropertyWebkitTextAlignLast: |
| 3275 case CSSPropertyWebkitTextJustify: |
3275 case CSSPropertyWebkitTextUnderlinePosition: | 3276 case CSSPropertyWebkitTextUnderlinePosition: |
3276 #endif // CSS3_TEXT | 3277 #endif // CSS3_TEXT |
3277 case CSSPropertyWebkitTextEmphasisColor: | 3278 case CSSPropertyWebkitTextEmphasisColor: |
3278 case CSSPropertyWebkitTextEmphasisPosition: | 3279 case CSSPropertyWebkitTextEmphasisPosition: |
3279 case CSSPropertyWebkitTextEmphasisStyle: | 3280 case CSSPropertyWebkitTextEmphasisStyle: |
3280 case CSSPropertyWebkitTextFillColor: | 3281 case CSSPropertyWebkitTextFillColor: |
3281 case CSSPropertyWebkitTextSecurity: | 3282 case CSSPropertyWebkitTextSecurity: |
3282 case CSSPropertyWebkitTextStrokeColor: | 3283 case CSSPropertyWebkitTextStrokeColor: |
3283 case CSSPropertyWebkitTransformOriginX: | 3284 case CSSPropertyWebkitTransformOriginX: |
3284 case CSSPropertyWebkitTransformOriginY: | 3285 case CSSPropertyWebkitTransformOriginY: |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3721 info.addMember(m_state, "state"); | 3722 info.addMember(m_state, "state"); |
3722 | 3723 |
3723 // FIXME: move this to a place where it would be called only once? | 3724 // FIXME: move this to a place where it would be called only once? |
3724 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); | 3725 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); |
3725 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); | 3726 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); |
3726 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle, "defaultPrintStyle"
); | 3727 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle, "defaultPrintStyle"
); |
3727 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); | 3728 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); |
3728 } | 3729 } |
3729 | 3730 |
3730 } // namespace WebCore | 3731 } // namespace WebCore |
OLD | NEW |