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

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

Issue 16357011: Remove support for -webkit-color-correction (which we've never supported on (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resolve merge conflicts, obey brace style changes Created 7 years, 6 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 , orphans(RenderStyle::initialOrphans()) 64 , orphans(RenderStyle::initialOrphans())
65 , m_hasAutoWidows(true) 65 , m_hasAutoWidows(true)
66 , m_hasAutoOrphans(true) 66 , m_hasAutoOrphans(true)
67 , textSecurity(RenderStyle::initialTextSecurity()) 67 , textSecurity(RenderStyle::initialTextSecurity())
68 , userModify(READ_ONLY) 68 , userModify(READ_ONLY)
69 , wordBreak(RenderStyle::initialWordBreak()) 69 , wordBreak(RenderStyle::initialWordBreak())
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 , colorSpace(ColorSpaceDeviceRGB)
75 , speak(SpeakNormal) 74 , speak(SpeakNormal)
76 , hyphens(HyphensManual) 75 , hyphens(HyphensManual)
77 , textEmphasisFill(TextEmphasisFillFilled) 76 , textEmphasisFill(TextEmphasisFillFilled)
78 , textEmphasisMark(TextEmphasisMarkNone) 77 , textEmphasisMark(TextEmphasisMarkNone)
79 , textEmphasisPosition(TextEmphasisPositionOver) 78 , textEmphasisPosition(TextEmphasisPositionOver)
80 , m_textOrientation(TextOrientationVerticalRight) 79 , m_textOrientation(TextOrientationVerticalRight)
81 #if ENABLE(CSS3_TEXT) 80 #if ENABLE(CSS3_TEXT)
82 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 81 , m_textIndentLine(RenderStyle::initialTextIndentLine())
83 #endif 82 #endif
84 , m_lineBoxContain(RenderStyle::initialLineBoxContain()) 83 , m_lineBoxContain(RenderStyle::initialLineBoxContain())
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 , orphans(o.orphans) 121 , orphans(o.orphans)
123 , m_hasAutoWidows(o.m_hasAutoWidows) 122 , m_hasAutoWidows(o.m_hasAutoWidows)
124 , m_hasAutoOrphans(o.m_hasAutoOrphans) 123 , m_hasAutoOrphans(o.m_hasAutoOrphans)
125 , textSecurity(o.textSecurity) 124 , textSecurity(o.textSecurity)
126 , userModify(o.userModify) 125 , userModify(o.userModify)
127 , wordBreak(o.wordBreak) 126 , wordBreak(o.wordBreak)
128 , overflowWrap(o.overflowWrap) 127 , overflowWrap(o.overflowWrap)
129 , lineBreak(o.lineBreak) 128 , lineBreak(o.lineBreak)
130 , resize(o.resize) 129 , resize(o.resize)
131 , userSelect(o.userSelect) 130 , userSelect(o.userSelect)
132 , colorSpace(o.colorSpace)
133 , speak(o.speak) 131 , speak(o.speak)
134 , hyphens(o.hyphens) 132 , hyphens(o.hyphens)
135 , textEmphasisFill(o.textEmphasisFill) 133 , textEmphasisFill(o.textEmphasisFill)
136 , textEmphasisMark(o.textEmphasisMark) 134 , textEmphasisMark(o.textEmphasisMark)
137 , textEmphasisPosition(o.textEmphasisPosition) 135 , textEmphasisPosition(o.textEmphasisPosition)
138 , m_textOrientation(o.m_textOrientation) 136 , m_textOrientation(o.m_textOrientation)
139 #if ENABLE(CSS3_TEXT) 137 #if ENABLE(CSS3_TEXT)
140 , m_textIndentLine(o.m_textIndentLine) 138 , m_textIndentLine(o.m_textIndentLine)
141 #endif 139 #endif
142 , m_lineBoxContain(o.m_lineBoxContain) 140 , m_lineBoxContain(o.m_lineBoxContain)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 && textSecurity == o.textSecurity 197 && textSecurity == o.textSecurity
200 && userModify == o.userModify 198 && userModify == o.userModify
201 && wordBreak == o.wordBreak 199 && wordBreak == o.wordBreak
202 && overflowWrap == o.overflowWrap 200 && overflowWrap == o.overflowWrap
203 && lineBreak == o.lineBreak 201 && lineBreak == o.lineBreak
204 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) 202 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
205 && useTouchOverflowScrolling == o.useTouchOverflowScrolling 203 && useTouchOverflowScrolling == o.useTouchOverflowScrolling
206 #endif 204 #endif
207 && resize == o.resize 205 && resize == o.resize
208 && userSelect == o.userSelect 206 && userSelect == o.userSelect
209 && colorSpace == o.colorSpace
210 && speak == o.speak 207 && speak == o.speak
211 && hyphens == o.hyphens 208 && hyphens == o.hyphens
212 && hyphenationLimitBefore == o.hyphenationLimitBefore 209 && hyphenationLimitBefore == o.hyphenationLimitBefore
213 && hyphenationLimitAfter == o.hyphenationLimitAfter 210 && hyphenationLimitAfter == o.hyphenationLimitAfter
214 && hyphenationLimitLines == o.hyphenationLimitLines 211 && hyphenationLimitLines == o.hyphenationLimitLines
215 && textEmphasisFill == o.textEmphasisFill 212 && textEmphasisFill == o.textEmphasisFill
216 && textEmphasisMark == o.textEmphasisMark 213 && textEmphasisMark == o.textEmphasisMark
217 && textEmphasisPosition == o.textEmphasisPosition 214 && textEmphasisPosition == o.textEmphasisPosition
218 && m_textOrientation == o.m_textOrientation 215 && m_textOrientation == o.m_textOrientation
219 #if ENABLE(CSS3_TEXT) 216 #if ENABLE(CSS3_TEXT)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 info.addMember(cursorData, "cursorData"); 254 info.addMember(cursorData, "cursorData");
258 info.addMember(hyphenationString, "hyphenationString"); 255 info.addMember(hyphenationString, "hyphenationString");
259 info.addMember(locale, "locale"); 256 info.addMember(locale, "locale");
260 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark"); 257 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark");
261 info.addMember(quotes, "quotes"); 258 info.addMember(quotes, "quotes");
262 info.addMember(m_lineGrid, "lineGrid"); 259 info.addMember(m_lineGrid, "lineGrid");
263 info.addMember(m_variables, "variables"); 260 info.addMember(m_variables, "variables");
264 } 261 }
265 262
266 } // namespace WebCore 263 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | Source/core/rendering/svg/RenderSVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698