| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 int order_; | 95 int order_; |
| 96 | 96 |
| 97 LengthPoint perspective_origin_; | 97 LengthPoint perspective_origin_; |
| 98 LengthPoint object_position_; | 98 LengthPoint object_position_; |
| 99 | 99 |
| 100 LineClampValue line_clamp_; // An Apple extension. | 100 LineClampValue line_clamp_; // An Apple extension. |
| 101 unsigned draggable_region_mode_ : 2; // DraggableRegionMode | 101 unsigned draggable_region_mode_ : 2; // DraggableRegionMode |
| 102 | 102 |
| 103 DataRef<StyleDeprecatedFlexibleBoxData> | 103 DataRef<StyleDeprecatedFlexibleBoxData> |
| 104 deprecated_flexible_box_data_data_; // Flexible box properties | 104 deprecated_flexible_box_data_; // Flexible box properties |
| 105 DataRef<StyleFlexibleBoxData> flexible_box_data_; | 105 DataRef<StyleFlexibleBoxData> flexible_box_data_; |
| 106 DataRef<StyleMultiColData> multi_col_data_; // CSS3 multicol properties | 106 DataRef<StyleMultiColData> multi_col_data_; // CSS3 multicol properties |
| 107 DataRef<StyleTransformData> | 107 DataRef<StyleTransformData> |
| 108 transform_data_; // Transform properties (rotate, scale, skew, etc.) | 108 transform_data_; // Transform properties (rotate, scale, skew, etc.) |
| 109 DataRef<StyleWillChangeData> will_change_data_; // CSS Will Change | 109 DataRef<StyleWillChangeData> will_change_data_; // CSS Will Change |
| 110 | 110 |
| 111 DataPersistent<StyleFilterData> | 111 DataPersistent<StyleFilterData> |
| 112 filter_; // Filter operations (url, sepia, blur, etc.) | 112 filter_; // Filter operations (url, sepia, blur, etc.) |
| 113 DataPersistent<StyleFilterData> | 113 DataPersistent<StyleFilterData> |
| 114 backdrop_filter_; // Backdrop filter operations (url, sepia, blur, etc.) | 114 backdrop_filter_; // Backdrop filter operations (url, sepia, blur, etc.) |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 unsigned has_author_border_ : 1; // Whether there is a author-defined border. | 219 unsigned has_author_border_ : 1; // Whether there is a author-defined border. |
| 220 | 220 |
| 221 private: | 221 private: |
| 222 StyleRareNonInheritedData(); | 222 StyleRareNonInheritedData(); |
| 223 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 223 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 224 }; | 224 }; |
| 225 | 225 |
| 226 } // namespace blink | 226 } // namespace blink |
| 227 | 227 |
| 228 #endif // StyleRareNonInheritedData_h | 228 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |