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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 short vertical_border_spacing; | 54 short vertical_border_spacing; |
55 | 55 |
56 // could be packed in a short but doesn't | 56 // could be packed in a short but doesn't |
57 // make a difference currently because of padding | 57 // make a difference currently because of padding |
58 Length line_height; | 58 Length line_height; |
59 | 59 |
60 Font font; | 60 Font font; |
61 Color color; | 61 Color color; |
62 Color visitedLinkColor; | 62 Color visitedLinkColor; |
63 float textAutosizingMultiplier; | 63 float textAutosizingMultiplier; |
64 unsigned textAutosizingFingerprint; | |
pdr.
2016/11/10 06:04:09
Echoing Steve's comment a bit, I think we should a
cathiechentx
2016/11/11 09:34:12
Lol, here is the shortcut to pass things across th
| |
64 | 65 |
65 private: | 66 private: |
66 StyleInheritedData(); | 67 StyleInheritedData(); |
67 StyleInheritedData(const StyleInheritedData&); | 68 StyleInheritedData(const StyleInheritedData&); |
68 }; | 69 }; |
69 | 70 |
70 } // namespace blink | 71 } // namespace blink |
71 | 72 |
72 #endif // StyleInheritedData_h | 73 #endif // StyleInheritedData_h |
OLD | NEW |