| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 BreakPage, | 335 BreakPage, |
| 336 BreakRecto, | 336 BreakRecto, |
| 337 BreakRight, | 337 BreakRight, |
| 338 BreakVerso, | 338 BreakVerso, |
| 339 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso, | 339 BreakValueLastAllowedForBreakAfterAndBefore = BreakVerso, |
| 340 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before} | 340 BreakAlways // Only needed by {page,-webkit-column}-break-{after,before} |
| 341 // shorthands. | 341 // shorthands. |
| 342 }; | 342 }; |
| 343 | 343 |
| 344 enum class ECursor : unsigned { | 344 enum class ECursor : unsigned { |
| 345 Auto, | 345 kAuto, |
| 346 Cross, | 346 kCrosshair, |
| 347 Default, | 347 kDefault, |
| 348 Pointer, | 348 kPointer, |
| 349 Move, | 349 kMove, |
| 350 VerticalText, | 350 kVerticalText, |
| 351 Cell, | 351 kCell, |
| 352 ContextMenu, | 352 kContextMenu, |
| 353 Alias, | 353 kAlias, |
| 354 Progress, | 354 kProgress, |
| 355 NoDrop, | 355 kNoDrop, |
| 356 NotAllowed, | 356 kNotAllowed, |
| 357 ZoomIn, | 357 kZoomIn, |
| 358 ZoomOut, | 358 kZoomOut, |
| 359 EResize, | 359 kEResize, |
| 360 NeResize, | 360 kNeResize, |
| 361 NwResize, | 361 kNwResize, |
| 362 NResize, | 362 kNResize, |
| 363 SeResize, | 363 kSeResize, |
| 364 SwResize, | 364 kSwResize, |
| 365 SResize, | 365 kSResize, |
| 366 WResize, | 366 kWResize, |
| 367 EwResize, | 367 kEwResize, |
| 368 NsResize, | 368 kNsResize, |
| 369 NeswResize, | 369 kNeswResize, |
| 370 NwseResize, | 370 kNwseResize, |
| 371 ColResize, | 371 kColResize, |
| 372 RowResize, | 372 kRowResize, |
| 373 Text, | 373 kText, |
| 374 Wait, | 374 kWait, |
| 375 Help, | 375 kHelp, |
| 376 AllScroll, | 376 kAllScroll, |
| 377 WebkitGrab, | 377 kWebkitGrab, |
| 378 WebkitGrabbing, | 378 kWebkitGrabbing, |
| 379 Copy, | 379 kCopy, |
| 380 None | 380 kNone |
| 381 }; | 381 }; |
| 382 | 382 |
| 383 enum class EDisplay : unsigned { | 383 enum class EDisplay : unsigned { |
| 384 Inline, | 384 Inline, |
| 385 Block, | 385 Block, |
| 386 ListItem, | 386 ListItem, |
| 387 InlineBlock, | 387 InlineBlock, |
| 388 Table, | 388 Table, |
| 389 InlineTable, | 389 InlineTable, |
| 390 TableRowGroup, | 390 TableRowGroup, |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 ScrollSnapTypeNone, | 610 ScrollSnapTypeNone, |
| 611 ScrollSnapTypeMandatory, | 611 ScrollSnapTypeMandatory, |
| 612 ScrollSnapTypeProximity | 612 ScrollSnapTypeProximity |
| 613 }; | 613 }; |
| 614 | 614 |
| 615 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 615 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 616 | 616 |
| 617 } // namespace blink | 617 } // namespace blink |
| 618 | 618 |
| 619 #endif // ComputedStyleConstants_h | 619 #endif // ComputedStyleConstants_h |
| OLD | NEW |