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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 enum TextAlignLast { | 372 enum TextAlignLast { |
373 TextAlignLastAuto, TextAlignLastStart, TextAlignLastEnd, TextAlignLastLeft,
TextAlignLastRight, TextAlignLastCenter, TextAlignLastJustify | 373 TextAlignLastAuto, TextAlignLastStart, TextAlignLastEnd, TextAlignLastLeft,
TextAlignLastRight, TextAlignLastCenter, TextAlignLastJustify |
374 }; | 374 }; |
375 | 375 |
376 enum TextJustify { | 376 enum TextJustify { |
377 TextJustifyAuto, TextJustifyNone, TextJustifyInterWord, TextJustifyDistribut
e | 377 TextJustifyAuto, TextJustifyNone, TextJustifyInterWord, TextJustifyDistribut
e |
378 }; | 378 }; |
379 | 379 |
380 enum TextUnderlinePosition { | 380 enum TextUnderlinePosition { |
381 // FIXME: Implement support for 'under left' and 'under right' values. | 381 // FIXME: Implement support for 'under left' and 'under right' values. |
382 TextUnderlinePositionAuto = 0x1, TextUnderlinePositionAlphabetic = 0x2, Text
UnderlinePositionUnder = 0x4 | 382 TextUnderlinePositionAuto = 0x1, |
| 383 TextUnderlinePositionUnder = 0x2 |
383 }; | 384 }; |
384 | 385 |
385 enum EPageBreak { | 386 enum EPageBreak { |
386 PBAUTO, PBALWAYS, PBAVOID | 387 PBAUTO, PBALWAYS, PBAVOID |
387 }; | 388 }; |
388 | 389 |
389 enum EEmptyCell { | 390 enum EEmptyCell { |
390 SHOW, HIDE | 391 SHOW, HIDE |
391 }; | 392 }; |
392 | 393 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; | 521 enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript }; |
521 | 522 |
522 // Reasonable maximum to prevent insane font sizes from causing crashes on some
platforms (such as Windows). | 523 // Reasonable maximum to prevent insane font sizes from causing crashes on some
platforms (such as Windows). |
523 static const float maximumAllowedFontSize = 1000000.0f; | 524 static const float maximumAllowedFontSize = 1000000.0f; |
524 | 525 |
525 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 526 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
526 | 527 |
527 } // namespace WebCore | 528 } // namespace WebCore |
528 | 529 |
529 #endif // RenderStyleConstants_h | 530 #endif // RenderStyleConstants_h |
OLD | NEW |