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

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

Issue 2622623003: Moved -webkit-rtl-ordering to be generated in ComputedStyleBase. (Closed)
Patch Set: Created 3 years, 11 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 enum TextOverflow { TextOverflowClip = 0, TextOverflowEllipsis }; 456 enum TextOverflow { TextOverflowClip = 0, TextOverflowEllipsis };
457 457
458 enum EImageRendering { 458 enum EImageRendering {
459 ImageRenderingAuto, 459 ImageRenderingAuto,
460 ImageRenderingOptimizeSpeed, 460 ImageRenderingOptimizeSpeed,
461 ImageRenderingOptimizeQuality, 461 ImageRenderingOptimizeQuality,
462 ImageRenderingOptimizeContrast, 462 ImageRenderingOptimizeContrast,
463 ImageRenderingPixelated 463 ImageRenderingPixelated
464 }; 464 };
465 465
466 enum class EOrder : unsigned { Logical, Visual };
467
468 enum RubyPosition { RubyPositionBefore, RubyPositionAfter }; 466 enum RubyPosition { RubyPositionBefore, RubyPositionAfter };
469 467
470 static const size_t GridAutoFlowBits = 4; 468 static const size_t GridAutoFlowBits = 4;
471 enum InternalGridAutoFlowAlgorithm { 469 enum InternalGridAutoFlowAlgorithm {
472 InternalAutoFlowAlgorithmSparse = 0x1, 470 InternalAutoFlowAlgorithmSparse = 0x1,
473 InternalAutoFlowAlgorithmDense = 0x2 471 InternalAutoFlowAlgorithmDense = 0x2
474 }; 472 };
475 473
476 enum InternalGridAutoFlowDirection { 474 enum InternalGridAutoFlowDirection {
477 InternalAutoFlowDirectionRow = 0x4, 475 InternalAutoFlowDirectionRow = 0x4,
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 ScrollSnapTypeNone, 606 ScrollSnapTypeNone,
609 ScrollSnapTypeMandatory, 607 ScrollSnapTypeMandatory,
610 ScrollSnapTypeProximity 608 ScrollSnapTypeProximity
611 }; 609 };
612 610
613 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; 611 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit };
614 612
615 } // namespace blink 613 } // namespace blink
616 614
617 #endif // ComputedStyleConstants_h 615 #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