| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 NoChange, | 47 NoChange, |
| 48 NoInherit, | 48 NoInherit, |
| 49 UpdatePseudoElements, | 49 UpdatePseudoElements, |
| 50 IndependentInherit, | 50 IndependentInherit, |
| 51 Inherit, | 51 Inherit, |
| 52 Force, | 52 Force, |
| 53 Reattach, | 53 Reattach, |
| 54 ReattachNoLayoutObject | 54 ReattachNoLayoutObject |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 enum class PrintColorAdjust : unsigned { Economy, Exact }; | |
| 58 | |
| 59 // Static pseudo styles. Dynamic ones are produced on the fly. | 57 // Static pseudo styles. Dynamic ones are produced on the fly. |
| 60 enum PseudoId { | 58 enum PseudoId { |
| 61 // The order must be NOP ID, public IDs, and then internal IDs. | 59 // The order must be NOP ID, public IDs, and then internal IDs. |
| 62 // If you add or remove a public ID, you must update _pseudoBits in | 60 // If you add or remove a public ID, you must update _pseudoBits in |
| 63 // ComputedStyle. | 61 // ComputedStyle. |
| 64 PseudoIdNone, | 62 PseudoIdNone, |
| 65 PseudoIdFirstLine, | 63 PseudoIdFirstLine, |
| 66 PseudoIdFirstLetter, | 64 PseudoIdFirstLetter, |
| 67 PseudoIdBefore, | 65 PseudoIdBefore, |
| 68 PseudoIdAfter, | 66 PseudoIdAfter, |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 ScrollSnapTypeNone, | 681 ScrollSnapTypeNone, |
| 684 ScrollSnapTypeMandatory, | 682 ScrollSnapTypeMandatory, |
| 685 ScrollSnapTypeProximity | 683 ScrollSnapTypeProximity |
| 686 }; | 684 }; |
| 687 | 685 |
| 688 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 686 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 689 | 687 |
| 690 } // namespace blink | 688 } // namespace blink |
| 691 | 689 |
| 692 #endif // ComputedStyleConstants_h | 690 #endif // ComputedStyleConstants_h |
| OLD | NEW |