| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 enum BoxSide { BSTop, BSRight, BSBottom, BSLeft }; | 45 enum BoxSide { BSTop, BSRight, BSBottom, BSLeft }; |
| 46 | 46 |
| 47 // See core/dom/stylerecalc.md for an explanation on what each state means | 47 // See core/dom/stylerecalc.md for an explanation on what each state means |
| 48 enum StyleRecalcChange { | 48 enum StyleRecalcChange { |
| 49 NoChange, | 49 NoChange, |
| 50 NoInherit, | 50 NoInherit, |
| 51 UpdatePseudoElements, | 51 UpdatePseudoElements, |
| 52 IndependentInherit, | 52 IndependentInherit, |
| 53 Inherit, | 53 Inherit, |
| 54 Force, | 54 Force, |
| 55 Reattach | 55 Reattach, |
| 56 ReattachNoLayoutObject |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 // Static pseudo styles. Dynamic ones are produced on the fly. | 59 // Static pseudo styles. Dynamic ones are produced on the fly. |
| 59 enum PseudoId { | 60 enum PseudoId { |
| 60 // The order must be NOP ID, public IDs, and then internal IDs. | 61 // The order must be NOP ID, public IDs, and then internal IDs. |
| 61 // If you add or remove a public ID, you must update _pseudoBits in | 62 // If you add or remove a public ID, you must update _pseudoBits in |
| 62 // ComputedStyle. | 63 // ComputedStyle. |
| 63 PseudoIdNone, | 64 PseudoIdNone, |
| 64 PseudoIdFirstLine, | 65 PseudoIdFirstLine, |
| 65 PseudoIdFirstLetter, | 66 PseudoIdFirstLetter, |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 ScrollSnapTypeNone, | 568 ScrollSnapTypeNone, |
| 568 ScrollSnapTypeMandatory, | 569 ScrollSnapTypeMandatory, |
| 569 ScrollSnapTypeProximity | 570 ScrollSnapTypeProximity |
| 570 }; | 571 }; |
| 571 | 572 |
| 572 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 573 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 573 | 574 |
| 574 } // namespace blink | 575 } // namespace blink |
| 575 | 576 |
| 576 #endif // ComputedStyleConstants_h | 577 #endif // ComputedStyleConstants_h |
| OLD | NEW |