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

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

Issue 639293008: Make CSS resize property non-inherited. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New baselines Created 6 years, 2 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 , m_textFillColorIsCurrentColor(true) 66 , m_textFillColorIsCurrentColor(true)
67 , m_textEmphasisColorIsCurrentColor(true) 67 , m_textEmphasisColorIsCurrentColor(true)
68 , m_visitedLinkTextStrokeColorIsCurrentColor(true) 68 , m_visitedLinkTextStrokeColorIsCurrentColor(true)
69 , m_visitedLinkTextFillColorIsCurrentColor(true) 69 , m_visitedLinkTextFillColorIsCurrentColor(true)
70 , m_visitedLinkTextEmphasisColorIsCurrentColor(true) 70 , m_visitedLinkTextEmphasisColorIsCurrentColor(true)
71 , textSecurity(RenderStyle::initialTextSecurity()) 71 , textSecurity(RenderStyle::initialTextSecurity())
72 , userModify(READ_ONLY) 72 , userModify(READ_ONLY)
73 , wordBreak(RenderStyle::initialWordBreak()) 73 , wordBreak(RenderStyle::initialWordBreak())
74 , overflowWrap(RenderStyle::initialOverflowWrap()) 74 , overflowWrap(RenderStyle::initialOverflowWrap())
75 , lineBreak(LineBreakAuto) 75 , lineBreak(LineBreakAuto)
76 , resize(RenderStyle::initialResize())
77 , userSelect(RenderStyle::initialUserSelect()) 76 , userSelect(RenderStyle::initialUserSelect())
78 , speak(SpeakNormal) 77 , speak(SpeakNormal)
79 , hyphens(HyphensManual) 78 , hyphens(HyphensManual)
80 , textEmphasisFill(TextEmphasisFillFilled) 79 , textEmphasisFill(TextEmphasisFillFilled)
81 , textEmphasisMark(TextEmphasisMarkNone) 80 , textEmphasisMark(TextEmphasisMarkNone)
82 , textEmphasisPosition(TextEmphasisPositionOver) 81 , textEmphasisPosition(TextEmphasisPositionOver)
83 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 82 , m_textAlignLast(RenderStyle::initialTextAlignLast())
84 , m_textJustify(RenderStyle::initialTextJustify()) 83 , m_textJustify(RenderStyle::initialTextJustify())
85 , m_textOrientation(TextOrientationVerticalRight) 84 , m_textOrientation(TextOrientationVerticalRight)
86 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 85 , m_textIndentLine(RenderStyle::initialTextIndentLine())
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor) 121 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor)
123 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor) 122 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor)
124 , m_visitedLinkTextStrokeColorIsCurrentColor(o.m_visitedLinkTextStrokeColorI sCurrentColor) 123 , m_visitedLinkTextStrokeColorIsCurrentColor(o.m_visitedLinkTextStrokeColorI sCurrentColor)
125 , m_visitedLinkTextFillColorIsCurrentColor(o.m_visitedLinkTextFillColorIsCur rentColor) 124 , m_visitedLinkTextFillColorIsCurrentColor(o.m_visitedLinkTextFillColorIsCur rentColor)
126 , m_visitedLinkTextEmphasisColorIsCurrentColor(o.m_visitedLinkTextEmphasisCo lorIsCurrentColor) 125 , m_visitedLinkTextEmphasisColorIsCurrentColor(o.m_visitedLinkTextEmphasisCo lorIsCurrentColor)
127 , textSecurity(o.textSecurity) 126 , textSecurity(o.textSecurity)
128 , userModify(o.userModify) 127 , userModify(o.userModify)
129 , wordBreak(o.wordBreak) 128 , wordBreak(o.wordBreak)
130 , overflowWrap(o.overflowWrap) 129 , overflowWrap(o.overflowWrap)
131 , lineBreak(o.lineBreak) 130 , lineBreak(o.lineBreak)
132 , resize(o.resize)
133 , userSelect(o.userSelect) 131 , userSelect(o.userSelect)
134 , speak(o.speak) 132 , speak(o.speak)
135 , hyphens(o.hyphens) 133 , hyphens(o.hyphens)
136 , textEmphasisFill(o.textEmphasisFill) 134 , textEmphasisFill(o.textEmphasisFill)
137 , textEmphasisMark(o.textEmphasisMark) 135 , textEmphasisMark(o.textEmphasisMark)
138 , textEmphasisPosition(o.textEmphasisPosition) 136 , textEmphasisPosition(o.textEmphasisPosition)
139 , m_textAlignLast(o.m_textAlignLast) 137 , m_textAlignLast(o.m_textAlignLast)
140 , m_textJustify(o.m_textJustify) 138 , m_textJustify(o.m_textJustify)
141 , m_textOrientation(o.m_textOrientation) 139 , m_textOrientation(o.m_textOrientation)
142 , m_textIndentLine(o.m_textIndentLine) 140 , m_textIndentLine(o.m_textIndentLine)
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor 184 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor
187 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor 185 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor
188 && m_visitedLinkTextStrokeColorIsCurrentColor == o.m_visitedLinkTextStro keColorIsCurrentColor 186 && m_visitedLinkTextStrokeColorIsCurrentColor == o.m_visitedLinkTextStro keColorIsCurrentColor
189 && m_visitedLinkTextFillColorIsCurrentColor == o.m_visitedLinkTextFillCo lorIsCurrentColor 187 && m_visitedLinkTextFillColorIsCurrentColor == o.m_visitedLinkTextFillCo lorIsCurrentColor
190 && m_visitedLinkTextEmphasisColorIsCurrentColor == o.m_visitedLinkTextEm phasisColorIsCurrentColor 188 && m_visitedLinkTextEmphasisColorIsCurrentColor == o.m_visitedLinkTextEm phasisColorIsCurrentColor
191 && textSecurity == o.textSecurity 189 && textSecurity == o.textSecurity
192 && userModify == o.userModify 190 && userModify == o.userModify
193 && wordBreak == o.wordBreak 191 && wordBreak == o.wordBreak
194 && overflowWrap == o.overflowWrap 192 && overflowWrap == o.overflowWrap
195 && lineBreak == o.lineBreak 193 && lineBreak == o.lineBreak
196 && resize == o.resize
197 && userSelect == o.userSelect 194 && userSelect == o.userSelect
198 && speak == o.speak 195 && speak == o.speak
199 && hyphens == o.hyphens 196 && hyphens == o.hyphens
200 && hyphenationLimitBefore == o.hyphenationLimitBefore 197 && hyphenationLimitBefore == o.hyphenationLimitBefore
201 && hyphenationLimitAfter == o.hyphenationLimitAfter 198 && hyphenationLimitAfter == o.hyphenationLimitAfter
202 && hyphenationLimitLines == o.hyphenationLimitLines 199 && hyphenationLimitLines == o.hyphenationLimitLines
203 && textEmphasisFill == o.textEmphasisFill 200 && textEmphasisFill == o.textEmphasisFill
204 && textEmphasisMark == o.textEmphasisMark 201 && textEmphasisMark == o.textEmphasisMark
205 && textEmphasisPosition == o.textEmphasisPosition 202 && textEmphasisPosition == o.textEmphasisPosition
206 && m_touchActionDelay == o.m_touchActionDelay 203 && m_touchActionDelay == o.m_touchActionDelay
(...skipping 20 matching lines...) Expand all
227 { 224 {
228 return dataEquivalent(textShadow.get(), o.textShadow.get()); 225 return dataEquivalent(textShadow.get(), o.textShadow.get());
229 } 226 }
230 227
231 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const 228 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const
232 { 229 {
233 return dataEquivalent(quotes, o.quotes); 230 return dataEquivalent(quotes, o.quotes);
234 } 231 }
235 232
236 } // namespace blink 233 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | Source/core/rendering/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698