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

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

Issue 723373006: Add CSS parsing support for the scroll-blocks-on property (in place of touch-action-delay) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Apply CR feedback Created 6 years, 1 month 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 | Annotate | Revision Log
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 , textEmphasisPosition(TextEmphasisPositionOver) 81 , textEmphasisPosition(TextEmphasisPositionOver)
82 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 82 , m_textAlignLast(RenderStyle::initialTextAlignLast())
83 , m_textJustify(RenderStyle::initialTextJustify()) 83 , m_textJustify(RenderStyle::initialTextJustify())
84 , m_textOrientation(TextOrientationVerticalRight) 84 , m_textOrientation(TextOrientationVerticalRight)
85 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 85 , m_textIndentLine(RenderStyle::initialTextIndentLine())
86 , m_textIndentType(RenderStyle::initialTextIndentLine()) 86 , m_textIndentType(RenderStyle::initialTextIndentLine())
87 , m_lineBoxContain(RenderStyle::initialLineBoxContain()) 87 , m_lineBoxContain(RenderStyle::initialLineBoxContain())
88 , m_imageRendering(RenderStyle::initialImageRendering()) 88 , m_imageRendering(RenderStyle::initialImageRendering())
89 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition()) 89 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
90 , m_rubyPosition(RenderStyle::initialRubyPosition()) 90 , m_rubyPosition(RenderStyle::initialRubyPosition())
91 , m_touchActionDelay(RenderStyle::initialTouchActionDelay())
92 , m_subtreeWillChangeContents(false) 91 , m_subtreeWillChangeContents(false)
93 , hyphenationLimitBefore(-1) 92 , hyphenationLimitBefore(-1)
94 , hyphenationLimitAfter(-1) 93 , hyphenationLimitAfter(-1)
95 , hyphenationLimitLines(-1) 94 , hyphenationLimitLines(-1)
96 , m_tabSize(RenderStyle::initialTabSize()) 95 , m_tabSize(RenderStyle::initialTabSize())
97 , tapHighlightColor(RenderStyle::initialTapHighlightColor()) 96 , tapHighlightColor(RenderStyle::initialTapHighlightColor())
98 { 97 {
99 } 98 }
100 99
101 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o) 100 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 , textEmphasisPosition(o.textEmphasisPosition) 135 , textEmphasisPosition(o.textEmphasisPosition)
137 , m_textAlignLast(o.m_textAlignLast) 136 , m_textAlignLast(o.m_textAlignLast)
138 , m_textJustify(o.m_textJustify) 137 , m_textJustify(o.m_textJustify)
139 , m_textOrientation(o.m_textOrientation) 138 , m_textOrientation(o.m_textOrientation)
140 , m_textIndentLine(o.m_textIndentLine) 139 , m_textIndentLine(o.m_textIndentLine)
141 , m_textIndentType(o.m_textIndentType) 140 , m_textIndentType(o.m_textIndentType)
142 , m_lineBoxContain(o.m_lineBoxContain) 141 , m_lineBoxContain(o.m_lineBoxContain)
143 , m_imageRendering(o.m_imageRendering) 142 , m_imageRendering(o.m_imageRendering)
144 , m_textUnderlinePosition(o.m_textUnderlinePosition) 143 , m_textUnderlinePosition(o.m_textUnderlinePosition)
145 , m_rubyPosition(o.m_rubyPosition) 144 , m_rubyPosition(o.m_rubyPosition)
146 , m_touchActionDelay(o.m_touchActionDelay)
147 , m_subtreeWillChangeContents(o.m_subtreeWillChangeContents) 145 , m_subtreeWillChangeContents(o.m_subtreeWillChangeContents)
148 , hyphenationString(o.hyphenationString) 146 , hyphenationString(o.hyphenationString)
149 , hyphenationLimitBefore(o.hyphenationLimitBefore) 147 , hyphenationLimitBefore(o.hyphenationLimitBefore)
150 , hyphenationLimitAfter(o.hyphenationLimitAfter) 148 , hyphenationLimitAfter(o.hyphenationLimitAfter)
151 , hyphenationLimitLines(o.hyphenationLimitLines) 149 , hyphenationLimitLines(o.hyphenationLimitLines)
152 , locale(o.locale) 150 , locale(o.locale)
153 , textEmphasisCustomMark(o.textEmphasisCustomMark) 151 , textEmphasisCustomMark(o.textEmphasisCustomMark)
154 , m_tabSize(o.m_tabSize) 152 , m_tabSize(o.m_tabSize)
155 , tapHighlightColor(o.tapHighlightColor) 153 , tapHighlightColor(o.tapHighlightColor)
156 , appliedTextDecorations(o.appliedTextDecorations) 154 , appliedTextDecorations(o.appliedTextDecorations)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 && lineBreak == o.lineBreak 191 && lineBreak == o.lineBreak
194 && userSelect == o.userSelect 192 && userSelect == o.userSelect
195 && speak == o.speak 193 && speak == o.speak
196 && hyphens == o.hyphens 194 && hyphens == o.hyphens
197 && hyphenationLimitBefore == o.hyphenationLimitBefore 195 && hyphenationLimitBefore == o.hyphenationLimitBefore
198 && hyphenationLimitAfter == o.hyphenationLimitAfter 196 && hyphenationLimitAfter == o.hyphenationLimitAfter
199 && hyphenationLimitLines == o.hyphenationLimitLines 197 && hyphenationLimitLines == o.hyphenationLimitLines
200 && textEmphasisFill == o.textEmphasisFill 198 && textEmphasisFill == o.textEmphasisFill
201 && textEmphasisMark == o.textEmphasisMark 199 && textEmphasisMark == o.textEmphasisMark
202 && textEmphasisPosition == o.textEmphasisPosition 200 && textEmphasisPosition == o.textEmphasisPosition
203 && m_touchActionDelay == o.m_touchActionDelay
204 && m_textAlignLast == o.m_textAlignLast 201 && m_textAlignLast == o.m_textAlignLast
205 && m_textJustify == o.m_textJustify 202 && m_textJustify == o.m_textJustify
206 && m_textOrientation == o.m_textOrientation 203 && m_textOrientation == o.m_textOrientation
207 && m_textIndentLine == o.m_textIndentLine 204 && m_textIndentLine == o.m_textIndentLine
208 && m_textIndentType == o.m_textIndentType 205 && m_textIndentType == o.m_textIndentType
209 && m_lineBoxContain == o.m_lineBoxContain 206 && m_lineBoxContain == o.m_lineBoxContain
210 && m_subtreeWillChangeContents == o.m_subtreeWillChangeContents 207 && m_subtreeWillChangeContents == o.m_subtreeWillChangeContents
211 && hyphenationString == o.hyphenationString 208 && hyphenationString == o.hyphenationString
212 && locale == o.locale 209 && locale == o.locale
213 && textEmphasisCustomMark == o.textEmphasisCustomMark 210 && textEmphasisCustomMark == o.textEmphasisCustomMark
(...skipping 10 matching lines...) Expand all
224 { 221 {
225 return dataEquivalent(textShadow.get(), o.textShadow.get()); 222 return dataEquivalent(textShadow.get(), o.textShadow.get());
226 } 223 }
227 224
228 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const 225 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const
229 { 226 {
230 return dataEquivalent(quotes, o.quotes); 227 return dataEquivalent(quotes, o.quotes);
231 } 228 }
232 229
233 } // namespace blink 230 } // 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