| 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
reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 TouchActionNone = 0x1, | 421 TouchActionNone = 0x1, |
| 422 TouchActionPanX = 0x2, | 422 TouchActionPanX = 0x2, |
| 423 TouchActionPanY = 0x4, | 423 TouchActionPanY = 0x4, |
| 424 TouchActionPinchZoom = 0x8, | 424 TouchActionPinchZoom = 0x8, |
| 425 }; | 425 }; |
| 426 inline TouchAction operator| (TouchAction a, TouchAction b) { return TouchAction
(int(a) | int(b)); } | 426 inline TouchAction operator| (TouchAction a, TouchAction b) { return TouchAction
(int(a) | int(b)); } |
| 427 inline TouchAction& operator|= (TouchAction& a, TouchAction b) { return a = a |
b; } | 427 inline TouchAction& operator|= (TouchAction& a, TouchAction b) { return a = a |
b; } |
| 428 inline TouchAction operator& (TouchAction a, TouchAction b) { return TouchAction
(int(a) & int(b)); } | 428 inline TouchAction operator& (TouchAction a, TouchAction b) { return TouchAction
(int(a) & int(b)); } |
| 429 inline TouchAction& operator&= (TouchAction& a, TouchAction b) { return a = a &
b; } | 429 inline TouchAction& operator&= (TouchAction& a, TouchAction b) { return a = a &
b; } |
| 430 | 430 |
| 431 enum EIsolation { IsolationAuto, IsolationIsolate }; | |
| 432 | |
| 433 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; | 431 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; |
| 434 | 432 |
| 435 enum ItemPosition { | 433 enum ItemPosition { |
| 436 ItemPositionAuto, | 434 ItemPositionAuto, |
| 437 ItemPositionStretch, | 435 ItemPositionStretch, |
| 438 ItemPositionBaseline, | 436 ItemPositionBaseline, |
| 439 ItemPositionLastBaseline, | 437 ItemPositionLastBaseline, |
| 440 ItemPositionCenter, | 438 ItemPositionCenter, |
| 441 ItemPositionStart, | 439 ItemPositionStart, |
| 442 ItemPositionEnd, | 440 ItemPositionEnd, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 463 static const float maximumAllowedFontSize = 1000000.0f; | 461 static const float maximumAllowedFontSize = 1000000.0f; |
| 464 | 462 |
| 465 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 463 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 466 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 464 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 467 | 465 |
| 468 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 466 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 469 | 467 |
| 470 } // namespace blink | 468 } // namespace blink |
| 471 | 469 |
| 472 #endif // RenderStyleConstants_h | 470 #endif // RenderStyleConstants_h |
| OLD | NEW |