| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 CURSOR_DEFAULT, | 386 CURSOR_DEFAULT, |
| 387 CURSOR_POINTER, | 387 CURSOR_POINTER, |
| 388 CURSOR_MOVE, | 388 CURSOR_MOVE, |
| 389 CURSOR_VERTICAL_TEXT, | 389 CURSOR_VERTICAL_TEXT, |
| 390 CURSOR_CELL, | 390 CURSOR_CELL, |
| 391 CURSOR_CONTEXT_MENU, | 391 CURSOR_CONTEXT_MENU, |
| 392 CURSOR_ALIAS, | 392 CURSOR_ALIAS, |
| 393 CURSOR_PROGRESS, | 393 CURSOR_PROGRESS, |
| 394 CURSOR_NO_DROP, | 394 CURSOR_NO_DROP, |
| 395 CURSOR_NOT_ALLOWED, | 395 CURSOR_NOT_ALLOWED, |
| 396 CURSOR_WEBKIT_ZOOM_IN, | 396 CURSOR_ZOOM_IN, |
| 397 CURSOR_WEBKIT_ZOOM_OUT, | 397 CURSOR_ZOOM_OUT, |
| 398 CURSOR_E_RESIZE, | 398 CURSOR_E_RESIZE, |
| 399 CURSOR_NE_RESIZE, | 399 CURSOR_NE_RESIZE, |
| 400 CURSOR_NW_RESIZE, | 400 CURSOR_NW_RESIZE, |
| 401 CURSOR_N_RESIZE, | 401 CURSOR_N_RESIZE, |
| 402 CURSOR_SE_RESIZE, | 402 CURSOR_SE_RESIZE, |
| 403 CURSOR_SW_RESIZE, | 403 CURSOR_SW_RESIZE, |
| 404 CURSOR_S_RESIZE, | 404 CURSOR_S_RESIZE, |
| 405 CURSOR_W_RESIZE, | 405 CURSOR_W_RESIZE, |
| 406 CURSOR_EW_RESIZE, | 406 CURSOR_EW_RESIZE, |
| 407 CURSOR_NS_RESIZE, | 407 CURSOR_NS_RESIZE, |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 static const float maximumAllowedFontSize = 1000000.0f; | 529 static const float maximumAllowedFontSize = 1000000.0f; |
| 530 | 530 |
| 531 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 531 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 532 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 532 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 533 | 533 |
| 534 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 534 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 535 | 535 |
| 536 } // namespace WebCore | 536 } // namespace WebCore |
| 537 | 537 |
| 538 #endif // RenderStyleConstants_h | 538 #endif // RenderStyleConstants_h |
| OLD | NEW |