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

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

Issue 22336008: Use the runtime flag and remove '-webkit-' prefix for CSS3 text-indent. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 unsigned lineBreak : 3; // LineBreak 88 unsigned lineBreak : 3; // LineBreak
89 unsigned resize : 2; // EResize 89 unsigned resize : 2; // EResize
90 unsigned userSelect : 2; // EUserSelect 90 unsigned userSelect : 2; // EUserSelect
91 unsigned speak : 3; // ESpeak 91 unsigned speak : 3; // ESpeak
92 unsigned hyphens : 2; // Hyphens 92 unsigned hyphens : 2; // Hyphens
93 unsigned textEmphasisFill : 1; // TextEmphasisFill 93 unsigned textEmphasisFill : 1; // TextEmphasisFill
94 unsigned textEmphasisMark : 3; // TextEmphasisMark 94 unsigned textEmphasisMark : 3; // TextEmphasisMark
95 unsigned textEmphasisPosition : 1; // TextEmphasisPosition 95 unsigned textEmphasisPosition : 1; // TextEmphasisPosition
96 unsigned m_textAlignLast : 3; // TextAlignLast 96 unsigned m_textAlignLast : 3; // TextAlignLast
97 unsigned m_textOrientation : 2; // TextOrientation 97 unsigned m_textOrientation : 2; // TextOrientation
98 #if ENABLE(CSS3_TEXT)
99 unsigned m_textIndentLine : 1; // TextIndentEachLine 98 unsigned m_textIndentLine : 1; // TextIndentEachLine
100 #endif
101 unsigned m_lineBoxContain: 7; // LineBoxContain 99 unsigned m_lineBoxContain: 7; // LineBoxContain
102 // CSS Image Values Level 3 100 // CSS Image Values Level 3
103 unsigned m_imageRendering : 2; // EImageRendering 101 unsigned m_imageRendering : 2; // EImageRendering
104 unsigned m_lineSnap : 2; // LineSnap 102 unsigned m_lineSnap : 2; // LineSnap
105 unsigned m_lineAlign : 1; // LineAlign 103 unsigned m_lineAlign : 1; // LineAlign
106 #if ENABLE(CSS3_TEXT) 104 #if ENABLE(CSS3_TEXT)
107 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition 105 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition
108 #endif // CSS3_TEXT 106 #endif // CSS3_TEXT
109 unsigned m_rubyPosition : 1; // RubyPosition 107 unsigned m_rubyPosition : 1; // RubyPosition
110 108
(...skipping 15 matching lines...) Expand all
126 DataRef<StyleVariableData> m_variables; 124 DataRef<StyleVariableData> m_variables;
127 125
128 private: 126 private:
129 StyleRareInheritedData(); 127 StyleRareInheritedData();
130 StyleRareInheritedData(const StyleRareInheritedData&); 128 StyleRareInheritedData(const StyleRareInheritedData&);
131 }; 129 };
132 130
133 } // namespace WebCore 131 } // namespace WebCore
134 132
135 #endif // StyleRareInheritedData_h 133 #endif // StyleRareInheritedData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyleConstants.h ('k') | Source/core/rendering/style/StyleRareInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698