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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed compilation error in mac and crash in linux/window that were reported by trybots. 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 rareNonInheritedData.init(); 123 rareNonInheritedData.init();
124 rareNonInheritedData.access()->m_deprecatedFlexibleBox.init(); 124 rareNonInheritedData.access()->m_deprecatedFlexibleBox.init();
125 rareNonInheritedData.access()->m_flexibleBox.init(); 125 rareNonInheritedData.access()->m_flexibleBox.init();
126 rareNonInheritedData.access()->m_marquee.init(); 126 rareNonInheritedData.access()->m_marquee.init();
127 rareNonInheritedData.access()->m_multiCol.init(); 127 rareNonInheritedData.access()->m_multiCol.init();
128 rareNonInheritedData.access()->m_transform.init(); 128 rareNonInheritedData.access()->m_transform.init();
129 rareNonInheritedData.access()->m_willChange.init(); 129 rareNonInheritedData.access()->m_willChange.init();
130 rareNonInheritedData.access()->m_filter.init(); 130 rareNonInheritedData.access()->m_filter.init();
131 rareNonInheritedData.access()->m_grid.init(); 131 rareNonInheritedData.access()->m_grid.init();
132 rareNonInheritedData.access()->m_gridItem.init(); 132 rareNonInheritedData.access()->m_gridItem.init();
133 rareNonInheritedData.access()->m_navigation.init();
133 rareInheritedData.init(); 134 rareInheritedData.init();
134 inherited.init(); 135 inherited.init();
135 m_svgStyle.init(); 136 m_svgStyle.init();
136 } 137 }
137 138
138 ALWAYS_INLINE RenderStyle::RenderStyle(const RenderStyle& o) 139 ALWAYS_INLINE RenderStyle::RenderStyle(const RenderStyle& o)
139 : RefCounted<RenderStyle>() 140 : RefCounted<RenderStyle>()
140 , m_box(o.m_box) 141 , m_box(o.m_box)
141 , visual(o.visual) 142 , visual(o.visual)
142 , m_background(o.m_background) 143 , m_background(o.m_background)
(...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 horizontal || includeLogicalRightEdge); 1741 horizontal || includeLogicalRightEdge);
1741 1742
1742 edges[BSLeft] = BorderEdge(borderLeftWidth(), 1743 edges[BSLeft] = BorderEdge(borderLeftWidth(),
1743 visitedDependentColor(CSSPropertyBorderLeftColor), 1744 visitedDependentColor(CSSPropertyBorderLeftColor),
1744 borderLeftStyle(), 1745 borderLeftStyle(),
1745 borderLeftIsTransparent(), 1746 borderLeftIsTransparent(),
1746 !horizontal || includeLogicalLeftEdge); 1747 !horizontal || includeLogicalLeftEdge);
1747 } 1748 }
1748 1749
1749 } // namespace blink 1750 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698