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

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

Issue 2759343002: Generate inherited nonproperties insideLink and hasSimpleUnderline. (Closed)
Patch Set: Rebase Created 3 years, 9 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 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 kWebkitInlineBox, 314 kWebkitInlineBox,
315 kFlex, 315 kFlex,
316 kInlineFlex, 316 kInlineFlex,
317 kGrid, 317 kGrid,
318 kInlineGrid, 318 kInlineGrid,
319 kContents, 319 kContents,
320 kFlowRoot, 320 kFlowRoot,
321 kNone 321 kNone
322 }; 322 };
323 323
324 enum class EInsideLink : unsigned {
325 kNotInsideLink,
326 kInsideUnvisitedLink,
327 kInsideVisitedLink
328 };
329
330 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D }; 324 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D };
331 325
332 enum OffsetRotationType { OffsetRotationAuto, OffsetRotationFixed }; 326 enum OffsetRotationType { OffsetRotationAuto, OffsetRotationFixed };
333 327
334 enum EBackfaceVisibility { 328 enum EBackfaceVisibility {
335 BackfaceVisibilityVisible, 329 BackfaceVisibilityVisible,
336 BackfaceVisibilityHidden 330 BackfaceVisibilityHidden
337 }; 331 };
338 332
339 enum ELineClampType { LineClampLineCount, LineClampPercentage }; 333 enum ELineClampType { LineClampLineCount, LineClampPercentage };
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 ScrollSnapTypeNone, 520 ScrollSnapTypeNone,
527 ScrollSnapTypeMandatory, 521 ScrollSnapTypeMandatory,
528 ScrollSnapTypeProximity 522 ScrollSnapTypeProximity
529 }; 523 };
530 524
531 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; 525 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit };
532 526
533 } // namespace blink 527 } // namespace blink
534 528
535 #endif // ComputedStyleConstants_h 529 #endif // ComputedStyleConstants_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698