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

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

Issue 669553002: Remove <marquee> leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 { 117 {
118 setBitDefaults(); 118 setBitDefaults();
119 119
120 m_box.init(); 120 m_box.init();
121 visual.init(); 121 visual.init();
122 m_background.init(); 122 m_background.init();
123 surround.init(); 123 surround.init();
124 rareNonInheritedData.init(); 124 rareNonInheritedData.init();
125 rareNonInheritedData.access()->m_deprecatedFlexibleBox.init(); 125 rareNonInheritedData.access()->m_deprecatedFlexibleBox.init();
126 rareNonInheritedData.access()->m_flexibleBox.init(); 126 rareNonInheritedData.access()->m_flexibleBox.init();
127 rareNonInheritedData.access()->m_marquee.init();
128 rareNonInheritedData.access()->m_multiCol.init(); 127 rareNonInheritedData.access()->m_multiCol.init();
129 rareNonInheritedData.access()->m_transform.init(); 128 rareNonInheritedData.access()->m_transform.init();
130 rareNonInheritedData.access()->m_willChange.init(); 129 rareNonInheritedData.access()->m_willChange.init();
131 rareNonInheritedData.access()->m_filter.init(); 130 rareNonInheritedData.access()->m_filter.init();
132 rareNonInheritedData.access()->m_grid.init(); 131 rareNonInheritedData.access()->m_grid.init();
133 rareNonInheritedData.access()->m_gridItem.init(); 132 rareNonInheritedData.access()->m_gridItem.init();
134 rareInheritedData.init(); 133 rareInheritedData.init();
135 inherited.init(); 134 inherited.init();
136 m_svgStyle.init(); 135 m_svgStyle.init();
137 } 136 }
(...skipping 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after
1755 horizontal || includeLogicalRightEdge); 1754 horizontal || includeLogicalRightEdge);
1756 1755
1757 edges[BSLeft] = BorderEdge(borderLeftWidth(), 1756 edges[BSLeft] = BorderEdge(borderLeftWidth(),
1758 visitedDependentColor(CSSPropertyBorderLeftColor), 1757 visitedDependentColor(CSSPropertyBorderLeftColor),
1759 borderLeftStyle(), 1758 borderLeftStyle(),
1760 borderLeftIsTransparent(), 1759 borderLeftIsTransparent(),
1761 !horizontal || includeLogicalLeftEdge); 1760 !horizontal || includeLogicalLeftEdge);
1762 } 1761 }
1763 1762
1764 } // namespace blink 1763 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/RenderStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698