| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 StyleColor visited_link_outline_color_; | 143 StyleColor visited_link_outline_color_; |
| 144 StyleColor visited_link_border_left_color_; | 144 StyleColor visited_link_border_left_color_; |
| 145 StyleColor visited_link_border_right_color_; | 145 StyleColor visited_link_border_right_color_; |
| 146 StyleColor visited_link_border_top_color_; | 146 StyleColor visited_link_border_top_color_; |
| 147 StyleColor visited_link_border_bottom_color_; | 147 StyleColor visited_link_border_bottom_color_; |
| 148 | 148 |
| 149 Vector<String> callback_selectors_; | 149 Vector<String> callback_selectors_; |
| 150 | 150 |
| 151 std::unique_ptr<PaintImages> paint_images_; | 151 std::unique_ptr<PaintImages> paint_images_; |
| 152 | 152 |
| 153 std::unique_ptr<StyleNonInheritedVariables> variables_; | 153 std::unique_ptr<StyleNonInheritedVariables> non_inherited_variables_; |
| 154 | 154 |
| 155 StyleContentAlignmentData align_content_; | 155 StyleContentAlignmentData align_content_; |
| 156 StyleSelfAlignmentData align_items_; | 156 StyleSelfAlignmentData align_items_; |
| 157 StyleSelfAlignmentData align_self_; | 157 StyleSelfAlignmentData align_self_; |
| 158 StyleContentAlignmentData justify_content_; | 158 StyleContentAlignmentData justify_content_; |
| 159 StyleSelfAlignmentData justify_items_; | 159 StyleSelfAlignmentData justify_items_; |
| 160 StyleSelfAlignmentData justify_self_; | 160 StyleSelfAlignmentData justify_self_; |
| 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 |
| (...skipping 55 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 |