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

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

Issue 2898363002: Generate enum/getters/setters/mappings for word-break. (Closed)
Patch Set: Rebase Created 3 years, 7 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/css/CSSProperties.json5 ('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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 189
190 // CSS3 Image Values 190 // CSS3 Image Values
191 enum ObjectFit { 191 enum ObjectFit {
192 kObjectFitFill, 192 kObjectFitFill,
193 kObjectFitContain, 193 kObjectFitContain,
194 kObjectFitCover, 194 kObjectFitCover,
195 kObjectFitNone, 195 kObjectFitNone,
196 kObjectFitScaleDown 196 kObjectFitScaleDown
197 }; 197 };
198 198
199 // Word Break Values. Matches WinIE and CSS3
200
201 enum class EWordBreak { kNormal, kBreakAll, kKeepAll, kBreakWord };
202
203 enum class LineBreak { kAuto, kLoose, kNormal, kStrict, kAfterWhiteSpace }; 199 enum class LineBreak { kAuto, kLoose, kNormal, kStrict, kAfterWhiteSpace };
204 200
205 enum EResize { RESIZE_NONE, RESIZE_BOTH, RESIZE_HORIZONTAL, RESIZE_VERTICAL }; 201 enum EResize { RESIZE_NONE, RESIZE_BOTH, RESIZE_HORIZONTAL, RESIZE_VERTICAL };
206 202
207 enum QuoteType { OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE }; 203 enum QuoteType { OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE };
208 204
209 enum EAnimPlayState { kAnimPlayStatePlaying, kAnimPlayStatePaused }; 205 enum EAnimPlayState { kAnimPlayStatePlaying, kAnimPlayStatePaused };
210 206
211 static const size_t kTextDecorationBits = 4; 207 static const size_t kTextDecorationBits = 4;
212 enum class TextDecoration : unsigned { 208 enum class TextDecoration : unsigned {
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 // fraction, which leaves 20 bits for the integer part, making 1048575 447 // fraction, which leaves 20 bits for the integer part, making 1048575
452 // the largest number. 448 // the largest number.
453 449
454 static const int kBorderWidthFractionalBits = 6; 450 static const int kBorderWidthFractionalBits = 6;
455 static const int kBorderWidthDenominator = 1 << kBorderWidthFractionalBits; 451 static const int kBorderWidthDenominator = 1 << kBorderWidthFractionalBits;
456 static const int kMaxForBorderWidth = ((1 << 26) - 1) / kBorderWidthDenominator; 452 static const int kMaxForBorderWidth = ((1 << 26) - 1) / kBorderWidthDenominator;
457 453
458 } // namespace blink 454 } // namespace blink
459 455
460 #endif // ComputedStyleConstants_h 456 #endif // ComputedStyleConstants_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698