| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 Table, | 483 Table, |
| 484 InlineTable, | 484 InlineTable, |
| 485 TableRowGroup, | 485 TableRowGroup, |
| 486 TableHeaderGroup, | 486 TableHeaderGroup, |
| 487 TableFooterGroup, | 487 TableFooterGroup, |
| 488 TableRow, | 488 TableRow, |
| 489 TableColumnGroup, | 489 TableColumnGroup, |
| 490 TableColumn, | 490 TableColumn, |
| 491 TableCell, | 491 TableCell, |
| 492 TableCaption, | 492 TableCaption, |
| 493 Box, | 493 WebkitBox, |
| 494 InlineBox, | 494 WebkitInlineBox, |
| 495 Flex, | 495 Flex, |
| 496 InlineFlex, | 496 InlineFlex, |
| 497 Grid, | 497 Grid, |
| 498 InlineGrid, | 498 InlineGrid, |
| 499 Contents, | 499 Contents, |
| 500 None | 500 None |
| 501 }; | 501 }; |
| 502 | 502 |
| 503 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; | 503 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; |
| 504 | 504 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 ScrollSnapTypeNone, | 717 ScrollSnapTypeNone, |
| 718 ScrollSnapTypeMandatory, | 718 ScrollSnapTypeMandatory, |
| 719 ScrollSnapTypeProximity | 719 ScrollSnapTypeProximity |
| 720 }; | 720 }; |
| 721 | 721 |
| 722 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 722 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 723 | 723 |
| 724 } // namespace blink | 724 } // namespace blink |
| 725 | 725 |
| 726 #endif // ComputedStyleConstants_h | 726 #endif // ComputedStyleConstants_h |
| OLD | NEW |