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 3163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3174 case CSSPropertyWebkitColumnBreakBefore: | 3174 case CSSPropertyWebkitColumnBreakBefore: |
3175 case CSSPropertyWebkitColumnBreakInside: | 3175 case CSSPropertyWebkitColumnBreakInside: |
3176 case CSSPropertyWebkitColumnCount: | 3176 case CSSPropertyWebkitColumnCount: |
3177 case CSSPropertyWebkitColumnGap: | 3177 case CSSPropertyWebkitColumnGap: |
3178 case CSSPropertyWebkitColumnProgression: | 3178 case CSSPropertyWebkitColumnProgression: |
3179 case CSSPropertyWebkitColumnRuleColor: | 3179 case CSSPropertyWebkitColumnRuleColor: |
3180 case CSSPropertyWebkitColumnRuleStyle: | 3180 case CSSPropertyWebkitColumnRuleStyle: |
3181 case CSSPropertyWebkitColumnRuleWidth: | 3181 case CSSPropertyWebkitColumnRuleWidth: |
3182 case CSSPropertyWebkitColumnSpan: | 3182 case CSSPropertyWebkitColumnSpan: |
3183 case CSSPropertyWebkitColumnWidth: | 3183 case CSSPropertyWebkitColumnWidth: |
3184 #if ENABLE(CURSOR_VISIBILITY) | |
3185 case CSSPropertyWebkitCursorVisibility: | |
3186 #endif | |
3187 case CSSPropertyWebkitAlignContent: | 3184 case CSSPropertyWebkitAlignContent: |
3188 case CSSPropertyWebkitAlignItems: | 3185 case CSSPropertyWebkitAlignItems: |
3189 case CSSPropertyWebkitAlignSelf: | 3186 case CSSPropertyWebkitAlignSelf: |
3190 case CSSPropertyWebkitFlexBasis: | 3187 case CSSPropertyWebkitFlexBasis: |
3191 case CSSPropertyWebkitFlexDirection: | 3188 case CSSPropertyWebkitFlexDirection: |
3192 case CSSPropertyWebkitFlexGrow: | 3189 case CSSPropertyWebkitFlexGrow: |
3193 case CSSPropertyWebkitFlexShrink: | 3190 case CSSPropertyWebkitFlexShrink: |
3194 case CSSPropertyWebkitFlexWrap: | 3191 case CSSPropertyWebkitFlexWrap: |
3195 case CSSPropertyWebkitJustifyContent: | 3192 case CSSPropertyWebkitJustifyContent: |
3196 case CSSPropertyWebkitOrder: | 3193 case CSSPropertyWebkitOrder: |
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4647 info.addMember(m_state, "state"); | 4644 info.addMember(m_state, "state"); |
4648 | 4645 |
4649 // FIXME: move this to a place where it would be called only once? | 4646 // FIXME: move this to a place where it would be called only once? |
4650 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); | 4647 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); |
4651 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); | 4648 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); |
4652 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle")
; | 4649 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle")
; |
4653 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); | 4650 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); |
4654 } | 4651 } |
4655 | 4652 |
4656 } // namespace WebCore | 4653 } // namespace WebCore |
OLD | NEW |