| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 BreakAvoidPage, | 324 BreakAvoidPage, |
| 325 // Values below are only allowed for break-after and break-before. Values | 325 // Values below are only allowed for break-after and break-before. Values |
| 326 // above are also allowed for break-inside (in addition to break-after and | 326 // above are also allowed for break-inside (in addition to break-after and |
| 327 // break-before). | 327 // break-before). |
| 328 BreakValueLastAllowedForBreakInside = BreakAvoidPage, | 328 BreakValueLastAllowedForBreakInside = BreakAvoidPage, |
| 329 BreakColumn, | 329 BreakColumn, |
| 330 BreakLeft, | 330 BreakLeft, |
| 331 BreakPage, | 331 BreakPage, |
| 332 BreakRecto, | 332 BreakRecto, |
| 333 BreakRight, | 333 BreakRight, |
| 334 BreakVerso, | 334 BreakVerso |
| 335 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso, | |
| 336 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before} | |
| 337 // shorthands. | |
| 338 }; | 335 }; |
| 339 | 336 |
| 340 enum class ECursor : unsigned { | 337 enum class ECursor : unsigned { |
| 341 kAuto, | 338 kAuto, |
| 342 kCrosshair, | 339 kCrosshair, |
| 343 kDefault, | 340 kDefault, |
| 344 kPointer, | 341 kPointer, |
| 345 kMove, | 342 kMove, |
| 346 kVerticalText, | 343 kVerticalText, |
| 347 kCell, | 344 kCell, |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 ScrollSnapTypeNone, | 604 ScrollSnapTypeNone, |
| 608 ScrollSnapTypeMandatory, | 605 ScrollSnapTypeMandatory, |
| 609 ScrollSnapTypeProximity | 606 ScrollSnapTypeProximity |
| 610 }; | 607 }; |
| 611 | 608 |
| 612 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 609 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 613 | 610 |
| 614 } // namespace blink | 611 } // namespace blink |
| 615 | 612 |
| 616 #endif // ComputedStyleConstants_h | 613 #endif // ComputedStyleConstants_h |
| OLD | NEW |