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

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

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) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 , overflowWrap(RenderStyle::initialOverflowWrap()) 70 , overflowWrap(RenderStyle::initialOverflowWrap())
71 , lineBreak(LineBreakAuto) 71 , lineBreak(LineBreakAuto)
72 , resize(RenderStyle::initialResize()) 72 , resize(RenderStyle::initialResize())
73 , userSelect(RenderStyle::initialUserSelect()) 73 , userSelect(RenderStyle::initialUserSelect())
74 , speak(SpeakNormal) 74 , speak(SpeakNormal)
75 , hyphens(HyphensManual) 75 , hyphens(HyphensManual)
76 , textEmphasisFill(TextEmphasisFillFilled) 76 , textEmphasisFill(TextEmphasisFillFilled)
77 , textEmphasisMark(TextEmphasisMarkNone) 77 , textEmphasisMark(TextEmphasisMarkNone)
78 , textEmphasisPosition(TextEmphasisPositionOver) 78 , textEmphasisPosition(TextEmphasisPositionOver)
79 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 79 , m_textAlignLast(RenderStyle::initialTextAlignLast())
80 , m_textJustify(RenderStyle::initialTextJustify())
80 , m_textOrientation(TextOrientationVerticalRight) 81 , m_textOrientation(TextOrientationVerticalRight)
81 #if ENABLE(CSS3_TEXT) 82 #if ENABLE(CSS3_TEXT)
82 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 83 , m_textIndentLine(RenderStyle::initialTextIndentLine())
83 #endif 84 #endif
84 , m_lineBoxContain(RenderStyle::initialLineBoxContain()) 85 , m_lineBoxContain(RenderStyle::initialLineBoxContain())
85 , m_imageRendering(RenderStyle::initialImageRendering()) 86 , m_imageRendering(RenderStyle::initialImageRendering())
86 , m_lineSnap(RenderStyle::initialLineSnap()) 87 , m_lineSnap(RenderStyle::initialLineSnap())
87 , m_lineAlign(RenderStyle::initialLineAlign()) 88 , m_lineAlign(RenderStyle::initialLineAlign())
88 #if ENABLE(CSS3_TEXT) 89 #if ENABLE(CSS3_TEXT)
89 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition()) 90 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 , overflowWrap(o.overflowWrap) 125 , overflowWrap(o.overflowWrap)
125 , lineBreak(o.lineBreak) 126 , lineBreak(o.lineBreak)
126 , resize(o.resize) 127 , resize(o.resize)
127 , userSelect(o.userSelect) 128 , userSelect(o.userSelect)
128 , speak(o.speak) 129 , speak(o.speak)
129 , hyphens(o.hyphens) 130 , hyphens(o.hyphens)
130 , textEmphasisFill(o.textEmphasisFill) 131 , textEmphasisFill(o.textEmphasisFill)
131 , textEmphasisMark(o.textEmphasisMark) 132 , textEmphasisMark(o.textEmphasisMark)
132 , textEmphasisPosition(o.textEmphasisPosition) 133 , textEmphasisPosition(o.textEmphasisPosition)
133 , m_textAlignLast(o.m_textAlignLast) 134 , m_textAlignLast(o.m_textAlignLast)
135 , m_textJustify(o.m_textJustify)
134 , m_textOrientation(o.m_textOrientation) 136 , m_textOrientation(o.m_textOrientation)
135 #if ENABLE(CSS3_TEXT) 137 #if ENABLE(CSS3_TEXT)
136 , m_textIndentLine(o.m_textIndentLine) 138 , m_textIndentLine(o.m_textIndentLine)
137 #endif 139 #endif
138 , m_lineBoxContain(o.m_lineBoxContain) 140 , m_lineBoxContain(o.m_lineBoxContain)
139 , m_imageRendering(o.m_imageRendering) 141 , m_imageRendering(o.m_imageRendering)
140 , m_lineSnap(o.m_lineSnap) 142 , m_lineSnap(o.m_lineSnap)
141 , m_lineAlign(o.m_lineAlign) 143 , m_lineAlign(o.m_lineAlign)
142 #if ENABLE(CSS3_TEXT) 144 #if ENABLE(CSS3_TEXT)
143 , m_textUnderlinePosition(o.m_textUnderlinePosition) 145 , m_textUnderlinePosition(o.m_textUnderlinePosition)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 && userSelect == o.userSelect 199 && userSelect == o.userSelect
198 && speak == o.speak 200 && speak == o.speak
199 && hyphens == o.hyphens 201 && hyphens == o.hyphens
200 && hyphenationLimitBefore == o.hyphenationLimitBefore 202 && hyphenationLimitBefore == o.hyphenationLimitBefore
201 && hyphenationLimitAfter == o.hyphenationLimitAfter 203 && hyphenationLimitAfter == o.hyphenationLimitAfter
202 && hyphenationLimitLines == o.hyphenationLimitLines 204 && hyphenationLimitLines == o.hyphenationLimitLines
203 && textEmphasisFill == o.textEmphasisFill 205 && textEmphasisFill == o.textEmphasisFill
204 && textEmphasisMark == o.textEmphasisMark 206 && textEmphasisMark == o.textEmphasisMark
205 && textEmphasisPosition == o.textEmphasisPosition 207 && textEmphasisPosition == o.textEmphasisPosition
206 && m_textAlignLast == o.m_textAlignLast 208 && m_textAlignLast == o.m_textAlignLast
209 && m_textJustify == o.m_textJustify
207 && m_textOrientation == o.m_textOrientation 210 && m_textOrientation == o.m_textOrientation
208 #if ENABLE(CSS3_TEXT) 211 #if ENABLE(CSS3_TEXT)
209 && m_textIndentLine == o.m_textIndentLine 212 && m_textIndentLine == o.m_textIndentLine
210 #endif 213 #endif
211 && m_lineBoxContain == o.m_lineBoxContain 214 && m_lineBoxContain == o.m_lineBoxContain
212 && hyphenationString == o.hyphenationString 215 && hyphenationString == o.hyphenationString
213 && locale == o.locale 216 && locale == o.locale
214 && textEmphasisCustomMark == o.textEmphasisCustomMark 217 && textEmphasisCustomMark == o.textEmphasisCustomMark
215 && QuotesData::equals(quotes.get(), o.quotes.get()) 218 && QuotesData::equals(quotes.get(), o.quotes.get())
216 && m_tabSize == o.m_tabSize 219 && m_tabSize == o.m_tabSize
(...skipping 28 matching lines...) Expand all
245 info.addMember(cursorData, "cursorData"); 248 info.addMember(cursorData, "cursorData");
246 info.addMember(hyphenationString, "hyphenationString"); 249 info.addMember(hyphenationString, "hyphenationString");
247 info.addMember(locale, "locale"); 250 info.addMember(locale, "locale");
248 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark"); 251 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark");
249 info.addMember(quotes, "quotes"); 252 info.addMember(quotes, "quotes");
250 info.addMember(m_lineGrid, "lineGrid"); 253 info.addMember(m_lineGrid, "lineGrid");
251 info.addMember(m_variables, "variables"); 254 info.addMember(m_variables, "variables");
252 } 255 }
253 256
254 } // namespace WebCore 257 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698