Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: Source/core/rendering/style/StyleRareInheritedData.h

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 unsigned overflowWrap : 1; // EOverflowWrap 89 unsigned overflowWrap : 1; // EOverflowWrap
90 unsigned lineBreak : 3; // LineBreak 90 unsigned lineBreak : 3; // LineBreak
91 unsigned resize : 2; // EResize 91 unsigned resize : 2; // EResize
92 unsigned userSelect : 2; // EUserSelect 92 unsigned userSelect : 2; // EUserSelect
93 unsigned speak : 3; // ESpeak 93 unsigned speak : 3; // ESpeak
94 unsigned hyphens : 2; // Hyphens 94 unsigned hyphens : 2; // Hyphens
95 unsigned textEmphasisFill : 1; // TextEmphasisFill 95 unsigned textEmphasisFill : 1; // TextEmphasisFill
96 unsigned textEmphasisMark : 3; // TextEmphasisMark 96 unsigned textEmphasisMark : 3; // TextEmphasisMark
97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition 97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition
98 unsigned m_textAlignLast : 3; // TextAlignLast 98 unsigned m_textAlignLast : 3; // TextAlignLast
99 unsigned m_textJustify : 2; // TextJustify
99 unsigned m_textOrientation : 2; // TextOrientation 100 unsigned m_textOrientation : 2; // TextOrientation
100 #if ENABLE(CSS3_TEXT) 101 #if ENABLE(CSS3_TEXT)
101 unsigned m_textIndentLine : 1; // TextIndentEachLine 102 unsigned m_textIndentLine : 1; // TextIndentEachLine
102 #endif 103 #endif
103 unsigned m_lineBoxContain: 7; // LineBoxContain 104 unsigned m_lineBoxContain: 7; // LineBoxContain
104 // CSS Image Values Level 3 105 // CSS Image Values Level 3
105 unsigned m_imageRendering : 2; // EImageRendering 106 unsigned m_imageRendering : 2; // EImageRendering
106 unsigned m_lineSnap : 2; // LineSnap 107 unsigned m_lineSnap : 2; // LineSnap
107 unsigned m_lineAlign : 1; // LineAlign 108 unsigned m_lineAlign : 1; // LineAlign
108 #if ENABLE(CSS3_TEXT) 109 #if ENABLE(CSS3_TEXT)
(...skipping 19 matching lines...) Expand all
128 DataRef<StyleVariableData> m_variables; 129 DataRef<StyleVariableData> m_variables;
129 130
130 private: 131 private:
131 StyleRareInheritedData(); 132 StyleRareInheritedData();
132 StyleRareInheritedData(const StyleRareInheritedData&); 133 StyleRareInheritedData(const StyleRareInheritedData&);
133 }; 134 };
134 135
135 } // namespace WebCore 136 } // namespace WebCore
136 137
137 #endif // StyleRareInheritedData_h 138 #endif // StyleRareInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698