| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |