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

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

Issue 436563002: Remove value packing and custom style building for text-underline-position. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/rendering/style/RenderStyleConstants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 unsigned textEmphasisMark : 3; // TextEmphasisMark 120 unsigned textEmphasisMark : 3; // TextEmphasisMark
121 unsigned textEmphasisPosition : 1; // TextEmphasisPosition 121 unsigned textEmphasisPosition : 1; // TextEmphasisPosition
122 unsigned m_textAlignLast : 3; // TextAlignLast 122 unsigned m_textAlignLast : 3; // TextAlignLast
123 unsigned m_textJustify : 2; // TextJustify 123 unsigned m_textJustify : 2; // TextJustify
124 unsigned m_textOrientation : 2; // TextOrientation 124 unsigned m_textOrientation : 2; // TextOrientation
125 unsigned m_textIndentLine : 1; // TextIndentEachLine 125 unsigned m_textIndentLine : 1; // TextIndentEachLine
126 unsigned m_textIndentType : 1; // TextIndentHanging 126 unsigned m_textIndentType : 1; // TextIndentHanging
127 unsigned m_lineBoxContain: 7; // LineBoxContain 127 unsigned m_lineBoxContain: 7; // LineBoxContain
128 // CSS Image Values Level 3 128 // CSS Image Values Level 3
129 unsigned m_imageRendering : 3; // EImageRendering 129 unsigned m_imageRendering : 3; // EImageRendering
130 unsigned m_textUnderlinePosition : 2; // TextUnderlinePosition 130 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition
131 unsigned m_rubyPosition : 1; // RubyPosition 131 unsigned m_rubyPosition : 1; // RubyPosition
132 unsigned m_touchActionDelay : 1; // TouchActionDelay 132 unsigned m_touchActionDelay : 1; // TouchActionDelay
133 133
134 // Though will-change is not itself an inherited property, the intent 134 // Though will-change is not itself an inherited property, the intent
135 // expressed by 'will-change: contents' includes descendants. 135 // expressed by 'will-change: contents' includes descendants.
136 unsigned m_subtreeWillChangeContents : 1; 136 unsigned m_subtreeWillChangeContents : 1;
137 137
138 AtomicString hyphenationString; 138 AtomicString hyphenationString;
139 short hyphenationLimitBefore; 139 short hyphenationLimitBefore;
140 short hyphenationLimitAfter; 140 short hyphenationLimitAfter;
(...skipping 11 matching lines...) Expand all
152 RefPtr<AppliedTextDecorationList> appliedTextDecorations; 152 RefPtr<AppliedTextDecorationList> appliedTextDecorations;
153 153
154 private: 154 private:
155 StyleRareInheritedData(); 155 StyleRareInheritedData();
156 StyleRareInheritedData(const StyleRareInheritedData&); 156 StyleRareInheritedData(const StyleRareInheritedData&);
157 }; 157 };
158 158
159 } // namespace blink 159 } // namespace blink
160 160
161 #endif // StyleRareInheritedData_h 161 #endif // StyleRareInheritedData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyleConstants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698