Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: Source/core/rendering/RenderDeprecatedFlexibleBox.cpp

Issue 571603003: Convert first letter into a pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after
1029 return "RenderDeprecatedFlexibleBox (positioned)"; 1029 return "RenderDeprecatedFlexibleBox (positioned)";
1030 // FIXME: Cleanup isPseudoElement duplication with other renderName methods. 1030 // FIXME: Cleanup isPseudoElement duplication with other renderName methods.
1031 // crbug.com/415653 1031 // crbug.com/415653
1032 if (style() && isPseudoElement()) { 1032 if (style() && isPseudoElement()) {
1033 if (style()->styleType() == BEFORE) 1033 if (style()->styleType() == BEFORE)
1034 return "RenderDeprecatedFlexibleBox (pseudo:before)"; 1034 return "RenderDeprecatedFlexibleBox (pseudo:before)";
1035 if (style()->styleType() == AFTER) 1035 if (style()->styleType() == AFTER)
1036 return "RenderDeprecatedFlexibleBox (pseudo:after)"; 1036 return "RenderDeprecatedFlexibleBox (pseudo:after)";
1037 if (style()->styleType() == BACKDROP) 1037 if (style()->styleType() == BACKDROP)
1038 return "RenderDeprecatedFlexibleBox (pseudo:backdrop)"; 1038 return "RenderDeprecatedFlexibleBox (pseudo:backdrop)";
1039 if (style()->styleType() == FIRST_LETTER)
1040 return "RenderDeprecatedFlexibleBox (pseudo:first-letter)";
1039 ASSERT_NOT_REACHED(); 1041 ASSERT_NOT_REACHED();
1040 } 1042 }
1041 if (isAnonymous()) 1043 if (isAnonymous())
1042 return "RenderDeprecatedFlexibleBox (generated)"; 1044 return "RenderDeprecatedFlexibleBox (generated)";
1043 if (isRelPositioned()) 1045 if (isRelPositioned())
1044 return "RenderDeprecatedFlexibleBox (relative positioned)"; 1046 return "RenderDeprecatedFlexibleBox (relative positioned)";
1045 return "RenderDeprecatedFlexibleBox"; 1047 return "RenderDeprecatedFlexibleBox";
1046 } 1048 }
1047 1049
1048 } // namespace blink 1050 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698