| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 Color visited_link_text_emphasis_color_; | 84 Color visited_link_text_emphasis_color_; |
| 85 Color visited_link_caret_color_; | 85 Color visited_link_caret_color_; |
| 86 | 86 |
| 87 RefPtr<ShadowList> | 87 RefPtr<ShadowList> |
| 88 text_shadow_; // Our text shadow information for shadowed text drawing. | 88 text_shadow_; // Our text shadow information for shadowed text drawing. |
| 89 AtomicString | 89 AtomicString |
| 90 highlight_; // Apple-specific extension for custom highlight rendering. | 90 highlight_; // Apple-specific extension for custom highlight rendering. |
| 91 | 91 |
| 92 Persistent<CursorList> cursor_data_; | 92 Persistent<CursorList> cursor_data_; |
| 93 | 93 |
| 94 Length indent_; | 94 Length text_indent_; |
| 95 float effective_zoom_; | 95 float effective_zoom_; |
| 96 | 96 |
| 97 // Paged media properties. | 97 // Paged media properties. |
| 98 short widows_; | 98 short widows_; |
| 99 short orphans_; | 99 short orphans_; |
| 100 | 100 |
| 101 unsigned text_stroke_color_is_current_color_ : 1; | 101 unsigned text_stroke_color_is_current_color_ : 1; |
| 102 unsigned text_fill_color_is_current_color_ : 1; | 102 unsigned text_fill_color_is_current_color_ : 1; |
| 103 unsigned text_emphasis_color_is_current_color_ : 1; | 103 unsigned text_emphasis_color_is_current_color_ : 1; |
| 104 unsigned caret_color_is_current_color_ : 1; | 104 unsigned caret_color_is_current_color_ : 1; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 TextSizeAdjust text_size_adjust_; | 163 TextSizeAdjust text_size_adjust_; |
| 164 | 164 |
| 165 private: | 165 private: |
| 166 StyleRareInheritedData(); | 166 StyleRareInheritedData(); |
| 167 StyleRareInheritedData(const StyleRareInheritedData&); | 167 StyleRareInheritedData(const StyleRareInheritedData&); |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 } // namespace blink | 170 } // namespace blink |
| 171 | 171 |
| 172 #endif // StyleRareInheritedData_h | 172 #endif // StyleRareInheritedData_h |
| OLD | NEW |