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

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

Issue 2241993002: CSS Motion Path: New names for properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 3 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 enum EPointerEvents { 470 enum EPointerEvents {
471 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE, 471 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE,
472 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_BOUNDINGBOX, 472 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_BOUNDINGBOX,
473 PE_ALL 473 PE_ALL
474 }; 474 };
475 475
476 enum ETransformStyle3D { 476 enum ETransformStyle3D {
477 TransformStyle3DFlat, TransformStyle3DPreserve3D 477 TransformStyle3DFlat, TransformStyle3DPreserve3D
478 }; 478 };
479 479
480 enum MotionRotationType { MotionRotationAuto, MotionRotationFixed }; 480 enum OffsetRotationType { OffsetRotationAuto, OffsetRotationFixed };
481 481
482 enum EBackfaceVisibility { 482 enum EBackfaceVisibility {
483 BackfaceVisibilityVisible, BackfaceVisibilityHidden 483 BackfaceVisibilityVisible, BackfaceVisibilityHidden
484 }; 484 };
485 485
486 enum ELineClampType { LineClampLineCount, LineClampPercentage }; 486 enum ELineClampType { LineClampLineCount, LineClampPercentage };
487 487
488 enum Hyphens { HyphensNone, HyphensManual, HyphensAuto }; 488 enum Hyphens { HyphensNone, HyphensManual, HyphensAuto };
489 489
490 enum ESpeak { SpeakNone, SpeakNormal, SpeakSpellOut, SpeakDigits, SpeakLiteralPu nctuation, SpeakNoPunctuation }; 490 enum ESpeak { SpeakNone, SpeakNormal, SpeakSpellOut, SpeakDigits, SpeakLiteralPu nctuation, SpeakNoPunctuation };
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 625
626 enum AutoRepeatType { 626 enum AutoRepeatType {
627 NoAutoRepeat, 627 NoAutoRepeat,
628 AutoFill, 628 AutoFill,
629 AutoFit 629 AutoFit
630 }; 630 };
631 631
632 } // namespace blink 632 } // namespace blink
633 633
634 #endif // ComputedStyleConstants_h 634 #endif // ComputedStyleConstants_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698