| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 TableColumn, | 395 TableColumn, |
| 396 TableCell, | 396 TableCell, |
| 397 TableCaption, | 397 TableCaption, |
| 398 WebkitBox, | 398 WebkitBox, |
| 399 WebkitInlineBox, | 399 WebkitInlineBox, |
| 400 Flex, | 400 Flex, |
| 401 InlineFlex, | 401 InlineFlex, |
| 402 Grid, | 402 Grid, |
| 403 InlineGrid, | 403 InlineGrid, |
| 404 Contents, | 404 Contents, |
| 405 FlowRoot, |
| 405 None | 406 None |
| 406 }; | 407 }; |
| 407 | 408 |
| 408 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; | 409 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; |
| 409 | 410 |
| 410 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D }; | 411 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D }; |
| 411 | 412 |
| 412 enum OffsetRotationType { OffsetRotationAuto, OffsetRotationFixed }; | 413 enum OffsetRotationType { OffsetRotationAuto, OffsetRotationFixed }; |
| 413 | 414 |
| 414 enum EBackfaceVisibility { | 415 enum EBackfaceVisibility { |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 ScrollSnapTypeNone, | 609 ScrollSnapTypeNone, |
| 609 ScrollSnapTypeMandatory, | 610 ScrollSnapTypeMandatory, |
| 610 ScrollSnapTypeProximity | 611 ScrollSnapTypeProximity |
| 611 }; | 612 }; |
| 612 | 613 |
| 613 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 614 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 614 | 615 |
| 615 } // namespace blink | 616 } // namespace blink |
| 616 | 617 |
| 617 #endif // ComputedStyleConstants_h | 618 #endif // ComputedStyleConstants_h |
| OLD | NEW |