OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the render object implementation for KHTML. | 2 * This file is part of the render object implementation for KHTML. |
3 * | 3 * |
4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
5 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
6 * Copyright (C) 2003 Apple Computer, Inc. | 6 * Copyright (C) 2003 Apple Computer, Inc. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1058 return "RenderDeprecatedFlexibleBox (positioned)"; | 1058 return "RenderDeprecatedFlexibleBox (positioned)"; |
1059 // FIXME: Cleanup isPseudoElement duplication with other renderName methods. | 1059 // FIXME: Cleanup isPseudoElement duplication with other renderName methods. |
1060 // crbug.com/415653 | 1060 // crbug.com/415653 |
1061 if (isPseudoElement()) { | 1061 if (isPseudoElement()) { |
1062 if (style()->styleType() == BEFORE) | 1062 if (style()->styleType() == BEFORE) |
1063 return "RenderDeprecatedFlexibleBox (pseudo:before)"; | 1063 return "RenderDeprecatedFlexibleBox (pseudo:before)"; |
1064 if (style()->styleType() == AFTER) | 1064 if (style()->styleType() == AFTER) |
1065 return "RenderDeprecatedFlexibleBox (pseudo:after)"; | 1065 return "RenderDeprecatedFlexibleBox (pseudo:after)"; |
1066 if (style()->styleType() == BACKDROP) | 1066 if (style()->styleType() == BACKDROP) |
1067 return "RenderDeprecatedFlexibleBox (pseudo:backdrop)"; | 1067 return "RenderDeprecatedFlexibleBox (pseudo:backdrop)"; |
| 1068 if (style()->styleType() == FIRST_LETTER) |
| 1069 return "RenderDeprecatedFlexibleBox (pseudo:first-letter)"; |
1068 ASSERT_NOT_REACHED(); | 1070 ASSERT_NOT_REACHED(); |
1069 } | 1071 } |
1070 if (isAnonymous()) | 1072 if (isAnonymous()) |
1071 return "RenderDeprecatedFlexibleBox (generated)"; | 1073 return "RenderDeprecatedFlexibleBox (generated)"; |
1072 if (isRelPositioned()) | 1074 if (isRelPositioned()) |
1073 return "RenderDeprecatedFlexibleBox (relative positioned)"; | 1075 return "RenderDeprecatedFlexibleBox (relative positioned)"; |
1074 return "RenderDeprecatedFlexibleBox"; | 1076 return "RenderDeprecatedFlexibleBox"; |
1075 } | 1077 } |
1076 | 1078 |
1077 } // namespace blink | 1079 } // namespace blink |
OLD | NEW |