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

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

Issue 2677033002: Remove BreakAlways from EBreak enum (Closed)
Patch Set: 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.h ('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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 BreakAvoidPage, 324 BreakAvoidPage,
325 // Values below are only allowed for break-after and break-before. Values 325 // Values below are only allowed for break-after and break-before. Values
326 // above are also allowed for break-inside (in addition to break-after and 326 // above are also allowed for break-inside (in addition to break-after and
327 // break-before). 327 // break-before).
328 BreakValueLastAllowedForBreakInside = BreakAvoidPage, 328 BreakValueLastAllowedForBreakInside = BreakAvoidPage,
329 BreakColumn, 329 BreakColumn,
330 BreakLeft, 330 BreakLeft,
331 BreakPage, 331 BreakPage,
332 BreakRecto, 332 BreakRecto,
333 BreakRight, 333 BreakRight,
334 BreakVerso, 334 BreakVerso
335 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso,
336 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before}
337 // shorthands.
338 }; 335 };
339 336
340 enum class ECursor : unsigned { 337 enum class ECursor : unsigned {
341 kAuto, 338 kAuto,
342 kCrosshair, 339 kCrosshair,
343 kDefault, 340 kDefault,
344 kPointer, 341 kPointer,
345 kMove, 342 kMove,
346 kVerticalText, 343 kVerticalText,
347 kCell, 344 kCell,
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 ScrollSnapTypeNone, 604 ScrollSnapTypeNone,
608 ScrollSnapTypeMandatory, 605 ScrollSnapTypeMandatory,
609 ScrollSnapTypeProximity 606 ScrollSnapTypeProximity
610 }; 607 };
611 608
612 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; 609 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit };
613 610
614 } // namespace blink 611 } // namespace blink
615 612
616 #endif // ComputedStyleConstants_h 613 #endif // ComputedStyleConstants_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698