| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 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 Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class ContentData; | 46 class ContentData; |
| 47 class CSSAnimationData; | 47 class CSSAnimationData; |
| 48 class CSSTransitionData; | 48 class CSSTransitionData; |
| 49 class LengthSize; | 49 class LengthSize; |
| 50 class ShadowList; | 50 class ShadowList; |
| 51 class StyleDeprecatedFlexibleBoxData; | 51 class StyleDeprecatedFlexibleBoxData; |
| 52 class StyleFilterData; | 52 class StyleFilterData; |
| 53 class StyleFlexibleBoxData; | 53 class StyleFlexibleBoxData; |
| 54 class StyleGridData; | 54 class StyleGridData; |
| 55 class StyleGridItemData; | 55 class StyleGridItemData; |
| 56 class StyleMarqueeData; | |
| 57 class StyleMultiColData; | 56 class StyleMultiColData; |
| 58 class StyleReflection; | 57 class StyleReflection; |
| 59 class StyleTransformData; | 58 class StyleTransformData; |
| 60 class StyleWillChangeData; | 59 class StyleWillChangeData; |
| 61 | 60 |
| 62 // Page size type. | 61 // Page size type. |
| 63 // StyleRareNonInheritedData::m_pageSize is meaningful only when | 62 // StyleRareNonInheritedData::m_pageSize is meaningful only when |
| 64 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. | 63 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. |
| 65 enum PageSizeType { | 64 enum PageSizeType { |
| 66 PAGE_SIZE_AUTO, // size: auto | 65 PAGE_SIZE_AUTO, // size: auto |
| (...skipping 26 matching lines...) Expand all Loading... |
| 93 float opacity; // Whether or not we're transparent. | 92 float opacity; // Whether or not we're transparent. |
| 94 | 93 |
| 95 float m_perspective; | 94 float m_perspective; |
| 96 LengthPoint m_perspectiveOrigin; | 95 LengthPoint m_perspectiveOrigin; |
| 97 | 96 |
| 98 LineClampValue lineClamp; // An Apple extension. | 97 LineClampValue lineClamp; // An Apple extension. |
| 99 DraggableRegionMode m_draggableRegionMode; | 98 DraggableRegionMode m_draggableRegionMode; |
| 100 | 99 |
| 101 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties | 100 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties |
| 102 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 101 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 103 DataRef<StyleMarqueeData> m_marquee; // Marquee properties | |
| 104 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 102 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| 105 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) | 103 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) |
| 106 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change | 104 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change |
| 107 | 105 |
| 108 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) | 106 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) |
| 109 | 107 |
| 110 DataRef<StyleGridData> m_grid; | 108 DataRef<StyleGridData> m_grid; |
| 111 DataRef<StyleGridItemData> m_gridItem; | 109 DataRef<StyleGridItemData> m_gridItem; |
| 112 | 110 |
| 113 OwnPtr<ContentData> m_content; | 111 OwnPtr<ContentData> m_content; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 unsigned m_resize : 2; // EResize | 203 unsigned m_resize : 2; // EResize |
| 206 | 204 |
| 207 private: | 205 private: |
| 208 StyleRareNonInheritedData(); | 206 StyleRareNonInheritedData(); |
| 209 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 207 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 210 }; | 208 }; |
| 211 | 209 |
| 212 } // namespace blink | 210 } // namespace blink |
| 213 | 211 |
| 214 #endif // StyleRareNonInheritedData_h | 212 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |