| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso, | 424 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso, |
| 425 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before} | 425 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before} |
| 426 // shorthands. | 426 // shorthands. |
| 427 }; | 427 }; |
| 428 | 428 |
| 429 enum class ECaptionSide : unsigned { Top, Bottom, Left, Right }; | 429 enum class ECaptionSide : unsigned { Top, Bottom, Left, Right }; |
| 430 | 430 |
| 431 enum class EListStylePosition : unsigned { Outside, Inside }; | 431 enum class EListStylePosition : unsigned { Outside, Inside }; |
| 432 | 432 |
| 433 enum class ECursor : unsigned { | 433 enum class ECursor : unsigned { |
| 434 // The following must match the order in CSSValueKeywords.in. | |
| 435 Auto, | 434 Auto, |
| 436 Cross, | 435 Cross, |
| 437 Default, | 436 Default, |
| 438 Pointer, | 437 Pointer, |
| 439 Move, | 438 Move, |
| 440 VerticalText, | 439 VerticalText, |
| 441 Cell, | 440 Cell, |
| 442 ContextMenu, | 441 ContextMenu, |
| 443 Alias, | 442 Alias, |
| 444 Progress, | 443 Progress, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 459 NeswResize, | 458 NeswResize, |
| 460 NwseResize, | 459 NwseResize, |
| 461 ColResize, | 460 ColResize, |
| 462 RowResize, | 461 RowResize, |
| 463 Text, | 462 Text, |
| 464 Wait, | 463 Wait, |
| 465 Help, | 464 Help, |
| 466 AllScroll, | 465 AllScroll, |
| 467 WebkitGrab, | 466 WebkitGrab, |
| 468 WebkitGrabbing, | 467 WebkitGrabbing, |
| 469 | |
| 470 // The following are handled as exceptions so don't need to match. | |
| 471 Copy, | 468 Copy, |
| 472 None | 469 None |
| 473 }; | 470 }; |
| 474 | 471 |
| 475 // The order of this enum must match the order of the display values in | 472 // The order of this enum must match the order of the display values in |
| 476 // CSSValueKeywords.in. | 473 // CSSValueKeywords.in. |
| 477 enum class EDisplay : unsigned { | 474 enum class EDisplay : unsigned { |
| 478 Inline, | 475 Inline, |
| 479 Block, | 476 Block, |
| 480 ListItem, | 477 ListItem, |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 ScrollSnapTypeNone, | 713 ScrollSnapTypeNone, |
| 717 ScrollSnapTypeMandatory, | 714 ScrollSnapTypeMandatory, |
| 718 ScrollSnapTypeProximity | 715 ScrollSnapTypeProximity |
| 719 }; | 716 }; |
| 720 | 717 |
| 721 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 718 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 722 | 719 |
| 723 } // namespace blink | 720 } // namespace blink |
| 724 | 721 |
| 725 #endif // ComputedStyleConstants_h | 722 #endif // ComputedStyleConstants_h |
| OLD | NEW |