| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 unsigned m_transformStyle3D : 1; // ETransformStyle3D | 102 unsigned m_transformStyle3D : 1; // ETransformStyle3D |
| 103 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility | 103 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility |
| 104 | 104 |
| 105 unsigned m_alignContent : 3; // EAlignContent | 105 unsigned m_alignContent : 3; // EAlignContent |
| 106 unsigned m_alignItems : 4; // ItemPosition | 106 unsigned m_alignItems : 4; // ItemPosition |
| 107 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment | 107 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment |
| 108 unsigned m_alignSelf : 4; // ItemPosition | 108 unsigned m_alignSelf : 4; // ItemPosition |
| 109 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment | 109 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment |
| 110 unsigned m_justifyContent : 3; // EJustifyContent | 110 unsigned m_justifyContent : 3; // EJustifyContent |
| 111 | 111 |
| 112 unsigned userDrag : 2; // EUserDrag | |
| 113 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." | 112 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." |
| 114 | 113 |
| 115 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 114 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 116 unsigned m_wrapFlow: 3; // WrapFlow | 115 unsigned m_wrapFlow: 3; // WrapFlow |
| 117 unsigned m_wrapThrough: 1; // WrapThrough | 116 unsigned m_wrapThrough: 1; // WrapThrough |
| 118 | 117 |
| 119 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. | 118 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. |
| 120 | 119 |
| 121 unsigned m_touchAction : TouchActionBits; // TouchAction | 120 unsigned m_touchAction : TouchActionBits; // TouchAction |
| 122 | 121 |
| 123 unsigned m_objectFit : 3; // ObjectFit | 122 unsigned m_objectFit : 3; // ObjectFit |
| 124 | 123 |
| 125 unsigned m_isolation : 1; // Isolation | 124 unsigned m_isolation : 1; // Isolation |
| 126 | 125 |
| 127 unsigned m_justifyItems : 4; // ItemPosition | 126 unsigned m_justifyItems : 4; // ItemPosition |
| 128 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment | 127 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment |
| 129 unsigned m_justifyItemsPositionType: 1; // Whether or not alignment uses the
'legacy' keyword. | 128 unsigned m_justifyItemsPositionType: 1; // Whether or not alignment uses the
'legacy' keyword. |
| 130 | 129 |
| 131 unsigned m_justifySelf : 4; // ItemPosition | 130 unsigned m_justifySelf : 4; // ItemPosition |
| 132 unsigned m_justifySelfOverflowAlignment : 2; // OverflowAlignment | 131 unsigned m_justifySelfOverflowAlignment : 2; // OverflowAlignment |
| 133 | 132 |
| 134 private: | 133 private: |
| 135 StyleRareNonInheritedData(); | 134 StyleRareNonInheritedData(); |
| 136 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 135 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace blink | 138 } // namespace blink |
| 140 | 139 |
| 141 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ | 140 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ |
| OLD | NEW |