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

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

Issue 129873004: RenderBlock::isSelfCollapsingBlock() should only be used when an object does not require layout. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update Created 6 years, 11 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 WebKit project. 2 * Copyright (C) 2014 Robert Hogan <robert@roberthogan.net>
3 *
4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz>
5 * Copyright (C) 2006 Apple Computer Inc.
6 * 3 *
7 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
11 * 8 *
12 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 12 * Library General Public License for more details.
16 * 13 *
17 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
21 */ 18 */
22 19
23 #include "config.h" 20 #include "config.h"
24 21 #include "core/rendering/RenderTextControlPlaceholder.h"
25 #include "core/rendering/svg/RenderSVGTSpan.h"
26 22
27 namespace WebCore { 23 namespace WebCore {
28 24
29 RenderSVGTSpan::RenderSVGTSpan(Element* element) 25 RenderTextControlPlaceholder::RenderTextControlPlaceholder(Element* element)
30 : RenderSVGInline(element) 26 : RenderBlockFlow(element)
31 { 27 {
32 } 28 }
33 29
30 RenderTextControlPlaceholder::~RenderTextControlPlaceholder()
31 {
32 }
33
34 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698