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

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

Issue 2223133004: Removed Wrap-Flow and Wrap-Through from ComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed stale comment and rebase Created 4 years, 4 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) 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 reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom }; 482 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom };
483 483
484 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder }; 484 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder };
485 485
486 enum TextOrientation { TextOrientationMixed, TextOrientationUpright, TextOrienta tionSideways }; 486 enum TextOrientation { TextOrientationMixed, TextOrientationUpright, TextOrienta tionSideways };
487 487
488 enum TextOverflow { TextOverflowClip = 0, TextOverflowEllipsis }; 488 enum TextOverflow { TextOverflowClip = 0, TextOverflowEllipsis };
489 489
490 enum EImageRendering { ImageRenderingAuto, ImageRenderingOptimizeSpeed, ImageRen deringOptimizeQuality, ImageRenderingOptimizeContrast, ImageRenderingPixelated } ; 490 enum EImageRendering { ImageRenderingAuto, ImageRenderingOptimizeSpeed, ImageRen deringOptimizeQuality, ImageRenderingOptimizeContrast, ImageRenderingPixelated } ;
491 491
492 enum ImageResolutionSource { ImageResolutionSpecified = 0, ImageResolutionFromIm age };
493
494 enum ImageResolutionSnap { ImageResolutionNoSnap = 0, ImageResolutionSnapPixels };
495
496 enum Order { LogicalOrder = 0, VisualOrder }; 492 enum Order { LogicalOrder = 0, VisualOrder };
497 493
498 enum WrapFlow { WrapFlowAuto, WrapFlowBoth, WrapFlowStart, WrapFlowEnd, WrapFlow Maximum, WrapFlowClear };
499
500 enum WrapThrough { WrapThroughWrap, WrapThroughNone };
501
502 enum RubyPosition { RubyPositionBefore, RubyPositionAfter }; 494 enum RubyPosition { RubyPositionBefore, RubyPositionAfter };
503 495
504 static const size_t GridAutoFlowBits = 4; 496 static const size_t GridAutoFlowBits = 4;
505 enum InternalGridAutoFlowAlgorithm { 497 enum InternalGridAutoFlowAlgorithm {
506 InternalAutoFlowAlgorithmSparse = 0x1, 498 InternalAutoFlowAlgorithmSparse = 0x1,
507 InternalAutoFlowAlgorithmDense = 0x2 499 InternalAutoFlowAlgorithmDense = 0x2
508 }; 500 };
509 501
510 enum InternalGridAutoFlowDirection { 502 enum InternalGridAutoFlowDirection {
511 InternalAutoFlowDirectionRow = 0x4, 503 InternalAutoFlowDirectionRow = 0x4,
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 612
621 enum AutoRepeatType { 613 enum AutoRepeatType {
622 NoAutoRepeat, 614 NoAutoRepeat,
623 AutoFill, 615 AutoFill,
624 AutoFit 616 AutoFit
625 }; 617 };
626 618
627 } // namespace blink 619 } // namespace blink
628 620
629 #endif // ComputedStyleConstants_h 621 #endif // ComputedStyleConstants_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698