| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 kWait, | 328 kWait, |
| 329 kHelp, | 329 kHelp, |
| 330 kAllScroll, | 330 kAllScroll, |
| 331 kWebkitGrab, | 331 kWebkitGrab, |
| 332 kWebkitGrabbing, | 332 kWebkitGrabbing, |
| 333 kCopy, | 333 kCopy, |
| 334 kNone | 334 kNone |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 enum class EDisplay : unsigned { | 337 enum class EDisplay : unsigned { |
| 338 Inline, | 338 kInline, |
| 339 Block, | 339 kBlock, |
| 340 ListItem, | 340 kListItem, |
| 341 InlineBlock, | 341 kInlineBlock, |
| 342 Table, | 342 kTable, |
| 343 InlineTable, | 343 kInlineTable, |
| 344 TableRowGroup, | 344 kTableRowGroup, |
| 345 TableHeaderGroup, | 345 kTableHeaderGroup, |
| 346 TableFooterGroup, | 346 kTableFooterGroup, |
| 347 TableRow, | 347 kTableRow, |
| 348 TableColumnGroup, | 348 kTableColumnGroup, |
| 349 TableColumn, | 349 kTableColumn, |
| 350 TableCell, | 350 kTableCell, |
| 351 TableCaption, | 351 kTableCaption, |
| 352 WebkitBox, | 352 kWebkitBox, |
| 353 WebkitInlineBox, | 353 kWebkitInlineBox, |
| 354 Flex, | 354 kFlex, |
| 355 InlineFlex, | 355 kInlineFlex, |
| 356 Grid, | 356 kGrid, |
| 357 InlineGrid, | 357 kInlineGrid, |
| 358 Contents, | 358 kContents, |
| 359 FlowRoot, | 359 kFlowRoot, |
| 360 None | 360 kNone |
| 361 }; | 361 }; |
| 362 | 362 |
| 363 enum class EInsideLink : unsigned { | 363 enum class EInsideLink : unsigned { |
| 364 kNotInsideLink, | 364 kNotInsideLink, |
| 365 kInsideUnvisitedLink, | 365 kInsideUnvisitedLink, |
| 366 kInsideVisitedLink | 366 kInsideVisitedLink |
| 367 }; | 367 }; |
| 368 | 368 |
| 369 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D }; | 369 enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D }; |
| 370 | 370 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 ScrollSnapTypeNone, | 565 ScrollSnapTypeNone, |
| 566 ScrollSnapTypeMandatory, | 566 ScrollSnapTypeMandatory, |
| 567 ScrollSnapTypeProximity | 567 ScrollSnapTypeProximity |
| 568 }; | 568 }; |
| 569 | 569 |
| 570 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 570 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 571 | 571 |
| 572 } // namespace blink | 572 } // namespace blink |
| 573 | 573 |
| 574 #endif // ComputedStyleConstants_h | 574 #endif // ComputedStyleConstants_h |
| OLD | NEW |