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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyleConstants.h

Issue 2673533002: Moved overflow-x and overflow-y to be generated in ComputedStyleBase. (Closed)
Patch Set: Rebase? Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * 10 *
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 // Box decoration attributes. Not inherited. 138 // Box decoration attributes. Not inherited.
139 139
140 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone }; 140 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone };
141 141
142 // Box attributes. Not inherited. 142 // Box attributes. Not inherited.
143 143
144 enum class EBoxSizing : unsigned { kContentBox, kBorderBox }; 144 enum class EBoxSizing : unsigned { kContentBox, kBorderBox };
145 145
146 // Random visual rendering model attributes. Not inherited. 146 // Random visual rendering model attributes. Not inherited.
147 147
148 enum class EOverflow : unsigned {
149 kVisible,
150 kHidden,
151 kScroll,
152 kAuto,
153 kOverlay,
154 kWebkitPagedX,
155 kWebkitPagedY
156 };
157
158 enum class EVerticalAlign : unsigned { 148 enum class EVerticalAlign : unsigned {
159 kBaseline, 149 kBaseline,
160 kMiddle, 150 kMiddle,
161 kSub, 151 kSub,
162 kSuper, 152 kSuper,
163 kTextTop, 153 kTextTop,
164 kTextBottom, 154 kTextBottom,
165 kTop, 155 kTop,
166 kBottom, 156 kBottom,
167 kBaselineMiddle, 157 kBaselineMiddle,
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 ScrollSnapTypeNone, 596 ScrollSnapTypeNone,
607 ScrollSnapTypeMandatory, 597 ScrollSnapTypeMandatory,
608 ScrollSnapTypeProximity 598 ScrollSnapTypeProximity
609 }; 599 };
610 600
611 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; 601 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit };
612 602
613 } // namespace blink 603 } // namespace blink
614 604
615 #endif // ComputedStyleConstants_h 605 #endif // ComputedStyleConstants_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698