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

Side by Side Diff: Source/core/rendering/style/StyleRareNonInheritedData.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: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI 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 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 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 26 matching lines...) Expand all
37 StyleRareNonInheritedData::StyleRareNonInheritedData() 37 StyleRareNonInheritedData::StyleRareNonInheritedData()
38 : opacity(RenderStyle::initialOpacity()) 38 : opacity(RenderStyle::initialOpacity())
39 , m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator()) 39 , m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator())
40 , m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator()) 40 , m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator())
41 , m_perspective(RenderStyle::initialPerspective()) 41 , m_perspective(RenderStyle::initialPerspective())
42 , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX()) 42 , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX())
43 , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY()) 43 , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY())
44 , lineClamp(RenderStyle::initialLineClamp()) 44 , lineClamp(RenderStyle::initialLineClamp())
45 , m_draggableRegionMode(DraggableRegionNone) 45 , m_draggableRegionMode(DraggableRegionNone)
46 , m_mask(FillLayer(MaskFillLayer)) 46 , m_mask(FillLayer(MaskFillLayer))
47 , m_nav()
47 , m_pageSize() 48 , m_pageSize()
48 , m_shapeInside(RenderStyle::initialShapeInside()) 49 , m_shapeInside(RenderStyle::initialShapeInside())
49 , m_shapeOutside(RenderStyle::initialShapeOutside()) 50 , m_shapeOutside(RenderStyle::initialShapeOutside())
50 , m_shapeMargin(RenderStyle::initialShapeMargin()) 51 , m_shapeMargin(RenderStyle::initialShapeMargin())
51 , m_shapePadding(RenderStyle::initialShapePadding()) 52 , m_shapePadding(RenderStyle::initialShapePadding())
52 , m_clipPath(RenderStyle::initialClipPath()) 53 , m_clipPath(RenderStyle::initialClipPath())
53 , m_visitedLinkBackgroundColor(RenderStyle::initialBackgroundColor()) 54 , m_visitedLinkBackgroundColor(RenderStyle::initialBackgroundColor())
54 , m_order(RenderStyle::initialOrder()) 55 , m_order(RenderStyle::initialOrder())
55 , m_flowThread(RenderStyle::initialFlowThread()) 56 , m_flowThread(RenderStyle::initialFlowThread())
56 , m_regionThread(RenderStyle::initialRegionThread()) 57 , m_regionThread(RenderStyle::initialRegionThread())
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 , m_grid(o.m_grid) 103 , m_grid(o.m_grid)
103 , m_gridItem(o.m_gridItem) 104 , m_gridItem(o.m_gridItem)
104 , m_content(o.m_content ? o.m_content->clone() : nullptr) 105 , m_content(o.m_content ? o.m_content->clone() : nullptr)
105 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr) 106 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr)
106 , m_boxShadow(o.m_boxShadow ? adoptPtr(new ShadowData(*o.m_boxShadow)) : nul lptr) 107 , m_boxShadow(o.m_boxShadow ? adoptPtr(new ShadowData(*o.m_boxShadow)) : nul lptr)
107 , m_boxReflect(o.m_boxReflect) 108 , m_boxReflect(o.m_boxReflect)
108 , m_animations(o.m_animations ? adoptPtr(new CSSAnimationDataList(*o.m_anima tions)) : nullptr) 109 , m_animations(o.m_animations ? adoptPtr(new CSSAnimationDataList(*o.m_anima tions)) : nullptr)
109 , m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_tra nsitions)) : nullptr) 110 , m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_tra nsitions)) : nullptr)
110 , m_mask(o.m_mask) 111 , m_mask(o.m_mask)
111 , m_maskBoxImage(o.m_maskBoxImage) 112 , m_maskBoxImage(o.m_maskBoxImage)
113 , m_nav(o.m_nav)
112 , m_pageSize(o.m_pageSize) 114 , m_pageSize(o.m_pageSize)
113 , m_shapeInside(o.m_shapeInside) 115 , m_shapeInside(o.m_shapeInside)
114 , m_shapeOutside(o.m_shapeOutside) 116 , m_shapeOutside(o.m_shapeOutside)
115 , m_shapeMargin(o.m_shapeMargin) 117 , m_shapeMargin(o.m_shapeMargin)
116 , m_shapePadding(o.m_shapePadding) 118 , m_shapePadding(o.m_shapePadding)
117 , m_clipPath(o.m_clipPath) 119 , m_clipPath(o.m_clipPath)
118 , m_textDecorationColor(o.m_textDecorationColor) 120 , m_textDecorationColor(o.m_textDecorationColor)
119 , m_visitedLinkTextDecorationColor(o.m_visitedLinkTextDecorationColor) 121 , m_visitedLinkTextDecorationColor(o.m_visitedLinkTextDecorationColor)
120 , m_visitedLinkBackgroundColor(o.m_visitedLinkBackgroundColor) 122 , m_visitedLinkBackgroundColor(o.m_visitedLinkBackgroundColor)
121 , m_visitedLinkOutlineColor(o.m_visitedLinkOutlineColor) 123 , m_visitedLinkOutlineColor(o.m_visitedLinkOutlineColor)
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 && m_grid == o.m_grid 179 && m_grid == o.m_grid
178 && m_gridItem == o.m_gridItem 180 && m_gridItem == o.m_gridItem
179 && contentDataEquivalent(o) 181 && contentDataEquivalent(o)
180 && counterDataEquivalent(o) 182 && counterDataEquivalent(o)
181 && shadowDataEquivalent(o) 183 && shadowDataEquivalent(o)
182 && reflectionDataEquivalent(o) 184 && reflectionDataEquivalent(o)
183 && animationDataEquivalent(o) 185 && animationDataEquivalent(o)
184 && transitionDataEquivalent(o) 186 && transitionDataEquivalent(o)
185 && m_mask == o.m_mask 187 && m_mask == o.m_mask
186 && m_maskBoxImage == o.m_maskBoxImage 188 && m_maskBoxImage == o.m_maskBoxImage
189 && m_nav == o.m_nav
187 && m_pageSize == o.m_pageSize 190 && m_pageSize == o.m_pageSize
188 && m_shapeInside == o.m_shapeInside 191 && m_shapeInside == o.m_shapeInside
189 && m_shapeOutside == o.m_shapeOutside 192 && m_shapeOutside == o.m_shapeOutside
190 && m_shapeMargin == o.m_shapeMargin 193 && m_shapeMargin == o.m_shapeMargin
191 && m_shapePadding == o.m_shapePadding 194 && m_shapePadding == o.m_shapePadding
192 && m_clipPath == o.m_clipPath 195 && m_clipPath == o.m_clipPath
193 && m_textDecorationColor == o.m_textDecorationColor 196 && m_textDecorationColor == o.m_textDecorationColor
194 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo r 197 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo r
195 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor 198 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor
196 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor 199 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 info.addMember(m_regionThread, "regionThread"); 316 info.addMember(m_regionThread, "regionThread");
314 317
315 info.ignoreMember(m_perspectiveOriginX); 318 info.ignoreMember(m_perspectiveOriginX);
316 info.ignoreMember(m_perspectiveOriginY); 319 info.ignoreMember(m_perspectiveOriginY);
317 info.ignoreMember(m_pageSize); 320 info.ignoreMember(m_pageSize);
318 info.ignoreMember(m_shapeMargin); 321 info.ignoreMember(m_shapeMargin);
319 info.ignoreMember(m_shapePadding); 322 info.ignoreMember(m_shapePadding);
320 } 323 }
321 324
322 } // namespace WebCore 325 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698