| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 TableColumnGroup, | 490 TableColumnGroup, |
| 491 TableColumn, | 491 TableColumn, |
| 492 TableCell, | 492 TableCell, |
| 493 TableCaption, | 493 TableCaption, |
| 494 Box, | 494 Box, |
| 495 InlineBox, | 495 InlineBox, |
| 496 Flex, | 496 Flex, |
| 497 InlineFlex, | 497 InlineFlex, |
| 498 Grid, | 498 Grid, |
| 499 InlineGrid, | 499 InlineGrid, |
| 500 Contents, |
| 500 None | 501 None |
| 501 }; | 502 }; |
| 502 | 503 |
| 503 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; | 504 enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink }; |
| 504 | 505 |
| 505 enum EPointerEvents { | 506 enum EPointerEvents { |
| 506 PE_NONE, | 507 PE_NONE, |
| 507 PE_AUTO, | 508 PE_AUTO, |
| 508 PE_STROKE, | 509 PE_STROKE, |
| 509 PE_FILL, | 510 PE_FILL, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 ScrollSnapTypeNone, | 718 ScrollSnapTypeNone, |
| 718 ScrollSnapTypeMandatory, | 719 ScrollSnapTypeMandatory, |
| 719 ScrollSnapTypeProximity | 720 ScrollSnapTypeProximity |
| 720 }; | 721 }; |
| 721 | 722 |
| 722 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 723 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 723 | 724 |
| 724 } // namespace blink | 725 } // namespace blink |
| 725 | 726 |
| 726 #endif // ComputedStyleConstants_h | 727 #endif // ComputedStyleConstants_h |
| OLD | NEW |