| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 class StyleDeprecatedFlexibleBoxData; | 50 class StyleDeprecatedFlexibleBoxData; |
| 51 class StyleFilterData; | 51 class StyleFilterData; |
| 52 class StyleFlexibleBoxData; | 52 class StyleFlexibleBoxData; |
| 53 class StyleGridData; | 53 class StyleGridData; |
| 54 class StyleGridItemData; | 54 class StyleGridItemData; |
| 55 class StyleMarqueeData; | 55 class StyleMarqueeData; |
| 56 class StyleMultiColData; | 56 class StyleMultiColData; |
| 57 class StyleReflection; | 57 class StyleReflection; |
| 58 class StyleResolver; | 58 class StyleResolver; |
| 59 class StyleTransformData; | 59 class StyleTransformData; |
| 60 class StyleWillChangeData; |
| 60 | 61 |
| 61 // Page size type. | 62 // Page size type. |
| 62 // StyleRareNonInheritedData::m_pageSize is meaningful only when | 63 // StyleRareNonInheritedData::m_pageSize is meaningful only when |
| 63 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. | 64 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. |
| 64 enum PageSizeType { | 65 enum PageSizeType { |
| 65 PAGE_SIZE_AUTO, // size: auto | 66 PAGE_SIZE_AUTO, // size: auto |
| 66 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape | 67 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape |
| 67 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait | 68 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait |
| 68 PAGE_SIZE_RESOLVED // Size is fully resolved. | 69 PAGE_SIZE_RESOLVED // Size is fully resolved. |
| 69 }; | 70 }; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 99 Length m_perspectiveOriginY; | 100 Length m_perspectiveOriginY; |
| 100 | 101 |
| 101 LineClampValue lineClamp; // An Apple extension. | 102 LineClampValue lineClamp; // An Apple extension. |
| 102 DraggableRegionMode m_draggableRegionMode; | 103 DraggableRegionMode m_draggableRegionMode; |
| 103 | 104 |
| 104 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties | 105 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties |
| 105 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 106 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 106 DataRef<StyleMarqueeData> m_marquee; // Marquee properties | 107 DataRef<StyleMarqueeData> m_marquee; // Marquee properties |
| 107 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 108 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| 108 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) | 109 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) |
| 110 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change |
| 109 | 111 |
| 110 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) | 112 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) |
| 111 | 113 |
| 112 DataRef<StyleGridData> m_grid; | 114 DataRef<StyleGridData> m_grid; |
| 113 DataRef<StyleGridItemData> m_gridItem; | 115 DataRef<StyleGridItemData> m_gridItem; |
| 114 | 116 |
| 115 OwnPtr<ContentData> m_content; | 117 OwnPtr<ContentData> m_content; |
| 116 OwnPtr<CounterDirectiveMap> m_counterDirectives; | 118 OwnPtr<CounterDirectiveMap> m_counterDirectives; |
| 117 | 119 |
| 118 RefPtr<ShadowList> m_boxShadow; | 120 RefPtr<ShadowList> m_boxShadow; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 unsigned m_scrollBehavior: 2; | 195 unsigned m_scrollBehavior: 2; |
| 194 | 196 |
| 195 private: | 197 private: |
| 196 StyleRareNonInheritedData(); | 198 StyleRareNonInheritedData(); |
| 197 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 199 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 198 }; | 200 }; |
| 199 | 201 |
| 200 } // namespace WebCore | 202 } // namespace WebCore |
| 201 | 203 |
| 202 #endif // StyleRareNonInheritedData_h | 204 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |