| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 TextAlignLastCenter, | 288 TextAlignLastCenter, |
| 289 TextAlignLastJustify | 289 TextAlignLastJustify |
| 290 }; | 290 }; |
| 291 | 291 |
| 292 enum TextUnderlinePosition { | 292 enum TextUnderlinePosition { |
| 293 // FIXME: Implement support for 'under left' and 'under right' values. | 293 // FIXME: Implement support for 'under left' and 'under right' values. |
| 294 TextUnderlinePositionAuto, | 294 TextUnderlinePositionAuto, |
| 295 TextUnderlinePositionUnder | 295 TextUnderlinePositionUnder |
| 296 }; | 296 }; |
| 297 | 297 |
| 298 enum class ECursor : unsigned { | |
| 299 kAuto, | |
| 300 kCrosshair, | |
| 301 kDefault, | |
| 302 kPointer, | |
| 303 kMove, | |
| 304 kVerticalText, | |
| 305 kCell, | |
| 306 kContextMenu, | |
| 307 kAlias, | |
| 308 kProgress, | |
| 309 kNoDrop, | |
| 310 kNotAllowed, | |
| 311 kZoomIn, | |
| 312 kZoomOut, | |
| 313 kEResize, | |
| 314 kNeResize, | |
| 315 kNwResize, | |
| 316 kNResize, | |
| 317 kSeResize, | |
| 318 kSwResize, | |
| 319 kSResize, | |
| 320 kWResize, | |
| 321 kEwResize, | |
| 322 kNsResize, | |
| 323 kNeswResize, | |
| 324 kNwseResize, | |
| 325 kColResize, | |
| 326 kRowResize, | |
| 327 kText, | |
| 328 kWait, | |
| 329 kHelp, | |
| 330 kAllScroll, | |
| 331 kWebkitGrab, | |
| 332 kWebkitGrabbing, | |
| 333 kCopy, | |
| 334 kNone | |
| 335 }; | |
| 336 | |
| 337 enum class EDisplay : unsigned { | 298 enum class EDisplay : unsigned { |
| 338 kInline, | 299 kInline, |
| 339 kBlock, | 300 kBlock, |
| 340 kListItem, | 301 kListItem, |
| 341 kInlineBlock, | 302 kInlineBlock, |
| 342 kTable, | 303 kTable, |
| 343 kInlineTable, | 304 kInlineTable, |
| 344 kTableRowGroup, | 305 kTableRowGroup, |
| 345 kTableHeaderGroup, | 306 kTableHeaderGroup, |
| 346 kTableFooterGroup, | 307 kTableFooterGroup, |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 ScrollSnapTypeNone, | 526 ScrollSnapTypeNone, |
| 566 ScrollSnapTypeMandatory, | 527 ScrollSnapTypeMandatory, |
| 567 ScrollSnapTypeProximity | 528 ScrollSnapTypeProximity |
| 568 }; | 529 }; |
| 569 | 530 |
| 570 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 531 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 571 | 532 |
| 572 } // namespace blink | 533 } // namespace blink |
| 573 | 534 |
| 574 #endif // ComputedStyleConstants_h | 535 #endif // ComputedStyleConstants_h |
| OLD | NEW |