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 442 matching lines...) Loading... |
453 GRID, INLINE_GRID, | 453 GRID, INLINE_GRID, |
454 NONE | 454 NONE |
455 }; | 455 }; |
456 | 456 |
457 enum EInsideLink { | 457 enum EInsideLink { |
458 NotInsideLink, InsideUnvisitedLink, InsideVisitedLink | 458 NotInsideLink, InsideUnvisitedLink, InsideVisitedLink |
459 }; | 459 }; |
460 | 460 |
461 enum EPointerEvents { | 461 enum EPointerEvents { |
462 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE, | 462 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE, |
463 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_ALL | 463 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_BOUNDINGBOX, |
| 464 PE_ALL |
464 }; | 465 }; |
465 | 466 |
466 enum ETransformStyle3D { | 467 enum ETransformStyle3D { |
467 TransformStyle3DFlat, TransformStyle3DPreserve3D | 468 TransformStyle3DFlat, TransformStyle3DPreserve3D |
468 }; | 469 }; |
469 | 470 |
470 enum EBackfaceVisibility { | 471 enum EBackfaceVisibility { |
471 BackfaceVisibilityVisible, BackfaceVisibilityHidden | 472 BackfaceVisibilityVisible, BackfaceVisibilityHidden |
472 }; | 473 }; |
473 | 474 |
(...skipping 48 matching lines...) Loading... |
522 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; | 523 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; |
523 | 524 |
524 // Reasonable maximum to prevent insane font sizes from causing crashes on some
platforms (such as Windows). | 525 // Reasonable maximum to prevent insane font sizes from causing crashes on some
platforms (such as Windows). |
525 static const float maximumAllowedFontSize = 1000000.0f; | 526 static const float maximumAllowedFontSize = 1000000.0f; |
526 | 527 |
527 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 528 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
528 | 529 |
529 } // namespace WebCore | 530 } // namespace WebCore |
530 | 531 |
531 #endif // RenderStyleConstants_h | 532 #endif // RenderStyleConstants_h |
OLD | NEW |