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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 161 |
162 unsigned page_size_type_ : 2; // PageSizeType | 162 unsigned page_size_type_ : 2; // PageSizeType |
163 unsigned transform_style_3d_ : 1; // ETransformStyle3D | 163 unsigned transform_style_3d_ : 1; // ETransformStyle3D |
164 unsigned backface_visibility_ : 1; // EBackfaceVisibility | 164 unsigned backface_visibility_ : 1; // EBackfaceVisibility |
165 | 165 |
166 unsigned user_drag_ : 2; // EUserDrag | 166 unsigned user_drag_ : 2; // EUserDrag |
167 unsigned text_overflow_ : 1; // Whether or not lines that spill out should be | 167 unsigned text_overflow_ : 1; // Whether or not lines that spill out should be |
168 // truncated with "..." | 168 // truncated with "..." |
169 unsigned margin_before_collapse_ : 2; // EMarginCollapse | 169 unsigned margin_before_collapse_ : 2; // EMarginCollapse |
170 unsigned margin_after_collapse_ : 2; // EMarginCollapse | 170 unsigned margin_after_collapse_ : 2; // EMarginCollapse |
171 unsigned appearance_ : 6; // EAppearance | 171 unsigned appearance_ : 6; // EAppearance |
172 | 172 |
173 unsigned text_decoration_style_ : 3; // TextDecorationStyle | 173 unsigned text_decoration_style_ : 3; // TextDecorationStyle |
174 | 174 |
175 unsigned has_current_opacity_animation_ : 1; | 175 unsigned has_current_opacity_animation_ : 1; |
176 unsigned has_current_transform_animation_ : 1; | 176 unsigned has_current_transform_animation_ : 1; |
177 unsigned has_current_filter_animation_ : 1; | 177 unsigned has_current_filter_animation_ : 1; |
178 unsigned has_current_backdrop_filter_animation_ : 1; | 178 unsigned has_current_backdrop_filter_animation_ : 1; |
179 unsigned running_opacity_animation_on_compositor_ : 1; | 179 unsigned running_opacity_animation_on_compositor_ : 1; |
180 unsigned running_transform_animation_on_compositor_ : 1; | 180 unsigned running_transform_animation_on_compositor_ : 1; |
181 unsigned running_filter_animation_on_compositor_ : 1; | 181 unsigned running_filter_animation_on_compositor_ : 1; |
(...skipping 37 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 |