blob: 6960eac0c199919f906e730580c82b544ee2b338 [file] [log] [blame]
darin@apple.com640fa302008-02-15 05:03:55 +00001/*
darinb9481ed2006-03-20 02:57:59 +00002 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com)
6 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
darin@apple.com640fa302008-02-15 05:03:55 +00007 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
darinb9481ed2006-03-20 02:57:59 +00008 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
18 *
19 * You should have received a copy of the GNU Library General Public License
20 * along with this library; see the file COPYING.LIB. If not, write to
ddkilzerc8eccec2007-09-26 02:29:57 +000021 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
darinb9481ed2006-03-20 02:57:59 +000023 *
24 */
25
26#include "config.h"
27#include "RenderImage.h"
28
eseidela8445792006-12-28 00:48:37 +000029#include "BitmapImage.h"
darinb9481ed2006-03-20 02:57:59 +000030#include "Document.h"
31#include "GraphicsContext.h"
eseidel84943622006-05-15 23:23:42 +000032#include "HTMLImageElement.h"
darinb9481ed2006-03-20 02:57:59 +000033#include "HTMLInputElement.h"
eseidel84943622006-05-15 23:23:42 +000034#include "HTMLMapElement.h"
darin98fa8b82006-03-20 08:03:57 +000035#include "HTMLNames.h"
bdakinc1a5a832006-10-28 18:28:00 +000036#include "HitTestResult.h"
hyattb21f8372007-09-04 22:58:27 +000037#include "Page.h"
hyattd8048342006-05-31 01:48:18 +000038#include "RenderView.h"
darinb9481ed2006-03-20 02:57:59 +000039
darin7bd70952006-04-13 07:07:34 +000040using namespace std;
41
darinb9481ed2006-03-20 02:57:59 +000042namespace WebCore {
43
44using namespace HTMLNames;
45
weinigc24ab182006-10-30 22:41:29 +000046RenderImage::RenderImage(Node* node)
darin751cf302007-05-01 22:10:41 +000047 : RenderReplaced(node, IntSize(0, 0))
eseidel84943622006-05-15 23:23:42 +000048 , m_cachedImage(0)
darinec375482007-01-06 01:36:24 +000049 , m_isAnonymousImage(false)
darinb9481ed2006-03-20 02:57:59 +000050{
darinb9481ed2006-03-20 02:57:59 +000051 updateAltText();
52}
53
54RenderImage::~RenderImage()
55{
56 if (m_cachedImage)
hyatt@apple.com2c814c42008-04-12 04:09:22 +000057 m_cachedImage->removeClient(this);
darinb9481ed2006-03-20 02:57:59 +000058}
59
darinb9481ed2006-03-20 02:57:59 +000060void RenderImage::setCachedImage(CachedImage* newImage)
61{
darinec375482007-01-06 01:36:24 +000062 if (m_isAnonymousImage || m_cachedImage == newImage)
bdakineb2c2042006-07-10 11:39:35 +000063 return;
darinec375482007-01-06 01:36:24 +000064 if (m_cachedImage)
hyatt@apple.com2c814c42008-04-12 04:09:22 +000065 m_cachedImage->removeClient(this);
darinec375482007-01-06 01:36:24 +000066 m_cachedImage = newImage;
67 if (m_cachedImage) {
hyatt@apple.com2c814c42008-04-12 04:09:22 +000068 m_cachedImage->addClient(this);
kmcculloadfd67d2007-03-03 02:18:43 +000069 if (m_cachedImage->errorOccurred())
darinb9481ed2006-03-20 02:57:59 +000070 imageChanged(m_cachedImage);
71 }
72}
73
bdash58feef62007-01-11 02:24:30 +000074// If we'll be displaying either alt text or an image, add some padding.
75static const unsigned short paddingWidth = 4;
76static const unsigned short paddingHeight = 4;
77
78// Alt text is restricted to this maximum size, in pixels. These are
79// signed integers because they are compared with other signed values.
80static const int maxAltTextWidth = 1024;
81static const int maxAltTextHeight = 256;
82
83// Sets the image height and width to fit the alt text. Returns true if the
84// image size changed.
85bool RenderImage::setImageSizeForAltText(CachedImage* newImage /* = 0 */)
86{
87 int imageWidth = 0;
88 int imageHeight = 0;
89
90 // If we'll be displaying either text or an image, add a little padding.
91 if (!m_altText.isEmpty() || newImage) {
92 imageWidth = paddingWidth;
93 imageHeight = paddingHeight;
94 }
95
96 if (newImage) {
hyatt@apple.coma8031482008-03-19 17:58:22 +000097 // imageSize() returns 0 for the error image. We need the true size of the
98 // error image, so we have to get it by grabbing image() directly.
99 imageWidth += newImage->image()->width() * style()->effectiveZoom();
100 imageHeight += newImage->image()->height() * style()->effectiveZoom();
bdash58feef62007-01-11 02:24:30 +0000101 }
102
103 // we have an alt and the user meant it (its not a text we invented)
104 if (!m_altText.isEmpty()) {
105 const Font& font = style()->font();
106 imageWidth = max(imageWidth, min(font.width(TextRun(m_altText.characters(), m_altText.length())), maxAltTextWidth));
107 imageHeight = max(imageHeight, min(font.height(), maxAltTextHeight));
108 }
109
darin751cf302007-05-01 22:10:41 +0000110 IntSize imageSize = IntSize(imageWidth, imageHeight);
111 if (imageSize == intrinsicSize())
112 return false;
113
114 setIntrinsicSize(imageSize);
115 return true;
bdash58feef62007-01-11 02:24:30 +0000116}
117
weinigc24ab182006-10-30 22:41:29 +0000118void RenderImage::imageChanged(CachedImage* newImage)
darinb9481ed2006-03-20 02:57:59 +0000119{
ap692e06e2006-10-01 09:11:35 +0000120 if (documentBeingDestroyed())
121 return;
122
hyatt0fd84c82007-03-17 23:39:50 +0000123 if (hasBoxDecorations())
124 RenderReplaced::imageChanged(newImage);
125
hyatt@apple.coma8031482008-03-19 17:58:22 +0000126 if (newImage != m_cachedImage || !newImage)
darinb9481ed2006-03-20 02:57:59 +0000127 return;
darinb9481ed2006-03-20 02:57:59 +0000128
weinigc24ab182006-10-30 22:41:29 +0000129 bool imageSizeChanged = false;
darinb9481ed2006-03-20 02:57:59 +0000130
bdash58feef62007-01-11 02:24:30 +0000131 // Set image dimensions, taking into account the size of the alt text.
kmcculloadfd67d2007-03-03 02:18:43 +0000132 if (newImage->errorOccurred())
bdash58feef62007-01-11 02:24:30 +0000133 imageSizeChanged = setImageSizeForAltText(newImage);
134
bdasha1595472007-05-02 09:17:52 +0000135 bool shouldRepaint = true;
darinb9481ed2006-03-20 02:57:59 +0000136
137 // Image dimensions have been changed, see what needs to be done
hyatt@apple.coma8031482008-03-19 17:58:22 +0000138 if (newImage->imageSize(style()->effectiveZoom()) != intrinsicSize() || imageSizeChanged) {
darin751cf302007-05-01 22:10:41 +0000139 if (!newImage->errorOccurred())
hyatt@apple.coma8031482008-03-19 17:58:22 +0000140 setIntrinsicSize(newImage->imageSize(style()->effectiveZoom()));
darinb9481ed2006-03-20 02:57:59 +0000141
142 // In the case of generated image content using :before/:after, we might not be in the
143 // render tree yet. In that case, we don't need to worry about check for layout, since we'll get a
144 // layout when we get added in to the render tree hierarchy later.
145 if (containingBlock()) {
146 // lets see if we need to relayout at all..
147 int oldwidth = m_width;
148 int oldheight = m_height;
bdasha1595472007-05-02 09:17:52 +0000149 if (!prefWidthsDirty())
150 setPrefWidthsDirty(true);
darinb9481ed2006-03-20 02:57:59 +0000151 calcWidth();
152 calcHeight();
bdasha1595472007-05-02 09:17:52 +0000153
154 if (imageSizeChanged || m_width != oldwidth || m_height != oldheight) {
155 shouldRepaint = false;
156 if (!selfNeedsLayout())
157 setNeedsLayout(true);
158 }
weinigc24ab182006-10-30 22:41:29 +0000159
darinb9481ed2006-03-20 02:57:59 +0000160 m_width = oldwidth;
161 m_height = oldheight;
162 }
163 }
164
bdasha1595472007-05-02 09:17:52 +0000165 if (shouldRepaint)
darinb9481ed2006-03-20 02:57:59 +0000166 // FIXME: We always just do a complete repaint, since we always pass in the full image
167 // rect at the moment anyway.
bdasha1595472007-05-02 09:17:52 +0000168 repaintRectangle(contentBox());
darinb9481ed2006-03-20 02:57:59 +0000169}
170
171void RenderImage::resetAnimation()
172{
173 if (m_cachedImage) {
174 image()->resetAnimation();
175 if (!needsLayout())
176 repaint();
177 }
178}
179
antti@apple.com7f6c5da2007-12-04 19:21:09 +0000180void RenderImage::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
darinb9481ed2006-03-20 02:57:59 +0000181{
darinb9481ed2006-03-20 02:57:59 +0000182 int cWidth = contentWidth();
183 int cHeight = contentHeight();
184 int leftBorder = borderLeft();
185 int topBorder = borderTop();
186 int leftPad = paddingLeft();
187 int topPad = paddingTop();
188
antti@apple.com7f6c5da2007-12-04 19:21:09 +0000189 if (document()->printing() && !view()->printImages())
darinb9481ed2006-03-20 02:57:59 +0000190 return;
191
antti@apple.com7f6c5da2007-12-04 19:21:09 +0000192 GraphicsContext* context = paintInfo.context;
193
hyattb79ae802007-05-11 05:17:08 +0000194 if (!m_cachedImage || errorOccurred()) {
weinigc24ab182006-10-30 22:41:29 +0000195 if (paintInfo.phase == PaintPhaseSelection)
darinb9481ed2006-03-20 02:57:59 +0000196 return;
197
198 if (cWidth > 2 && cHeight > 2) {
bdash20fe5432007-10-14 11:59:35 +0000199 // Draw an outline rect where the image should be.
200 context->setStrokeStyle(SolidStroke);
201 context->setStrokeColor(Color::lightGray);
202 context->setFillColor(Color::transparent);
203 context->drawRect(IntRect(tx + leftBorder + leftPad, ty + topBorder + topPad, cWidth, cHeight));
weinigc24ab182006-10-30 22:41:29 +0000204
darinb9481ed2006-03-20 02:57:59 +0000205 bool errorPictureDrawn = false;
weinigc24ab182006-10-30 22:41:29 +0000206 int imageX = 0;
207 int imageY = 0;
bdash20fe5432007-10-14 11:59:35 +0000208 // When calculating the usable dimensions, exclude the pixels of
209 // the ouline rect so the error image/alt text doesn't draw on it.
210 int usableWidth = cWidth - 2;
211 int usableHeight = cHeight - 2;
weinigc24ab182006-10-30 22:41:29 +0000212
kmcculloadfd67d2007-03-03 02:18:43 +0000213 if (errorOccurred() && !image()->isNull() && (usableWidth >= image()->width()) && (usableHeight >= image()->height())) {
darinb9481ed2006-03-20 02:57:59 +0000214 // Center the error image, accounting for border and padding.
weinigc24ab182006-10-30 22:41:29 +0000215 int centerX = (usableWidth - image()->width()) / 2;
darinb9481ed2006-03-20 02:57:59 +0000216 if (centerX < 0)
217 centerX = 0;
weinigc24ab182006-10-30 22:41:29 +0000218 int centerY = (usableHeight - image()->height()) / 2;
darinb9481ed2006-03-20 02:57:59 +0000219 if (centerY < 0)
220 centerY = 0;
mitz@apple.comc547c0f2007-11-26 01:06:27 +0000221 imageX = leftBorder + leftPad + centerX + 1;
222 imageY = topBorder + topPad + centerY + 1;
weinig0a635f02006-11-01 21:49:13 +0000223 context->drawImage(image(), IntPoint(tx + imageX, ty + imageY));
darinb9481ed2006-03-20 02:57:59 +0000224 errorPictureDrawn = true;
225 }
weinigc24ab182006-10-30 22:41:29 +0000226
darinb9481ed2006-03-20 02:57:59 +0000227 if (!m_altText.isEmpty()) {
darin@apple.com640fa302008-02-15 05:03:55 +0000228 String text = m_altText;
darin7ab31092006-05-10 04:59:57 +0000229 text.replace('\\', backslashAsCurrencySymbol());
weinig0a635f02006-11-01 21:49:13 +0000230 context->setFont(style()->font());
hyatt6ce98622006-12-19 10:20:38 +0000231 context->setFillColor(style()->color());
weinigc24ab182006-10-30 22:41:29 +0000232 int ax = tx + leftBorder + leftPad;
233 int ay = ty + topBorder + topPad;
darinb9481ed2006-03-20 02:57:59 +0000234 const Font& font = style()->font();
235 int ascent = font.ascent();
weinig0a635f02006-11-01 21:49:13 +0000236
darinb9481ed2006-03-20 02:57:59 +0000237 // Only draw the alt text if it'll fit within the content box,
238 // and only if it fits above the error image.
darin@apple.com640fa302008-02-15 05:03:55 +0000239 TextRun textRun(text.characters(), text.length());
hyatt43d6c792006-05-11 10:19:34 +0000240 int textWidth = font.width(textRun);
darinb9481ed2006-03-20 02:57:59 +0000241 if (errorPictureDrawn) {
242 if (usableWidth >= textWidth && font.height() <= imageY)
weinig0a635f02006-11-01 21:49:13 +0000243 context->drawText(textRun, IntPoint(ax, ay + ascent));
darinb9481ed2006-03-20 02:57:59 +0000244 } else if (usableWidth >= textWidth && cHeight >= font.height())
weinig0a635f02006-11-01 21:49:13 +0000245 context->drawText(textRun, IntPoint(ax, ay + ascent));
darinb9481ed2006-03-20 02:57:59 +0000246 }
247 }
hyattb79ae802007-05-11 05:17:08 +0000248 } else if (m_cachedImage && !image()->isNull()) {
harrisonddf79c12006-07-13 23:17:08 +0000249#if PLATFORM(MAC)
weinig0a635f02006-11-01 21:49:13 +0000250 if (style()->highlight() != nullAtom && !paintInfo.context->paintingDisabled())
weinigc24ab182006-10-30 22:41:29 +0000251 paintCustomHighlight(tx - m_x, ty - m_y, style()->highlight(), true);
harrisonddf79c12006-07-13 23:17:08 +0000252#endif
253
weinigc24ab182006-10-30 22:41:29 +0000254 IntRect rect(IntPoint(tx + leftBorder + leftPad, ty + topBorder + topPad), IntSize(cWidth, cHeight));
255
darinb9481ed2006-03-20 02:57:59 +0000256 HTMLImageElement* imageElt = (element() && element()->hasTagName(imgTag)) ? static_cast<HTMLImageElement*>(element()) : 0;
darin33137f72006-04-21 06:52:11 +0000257 CompositeOperator compositeOperator = imageElt ? imageElt->compositeOperator() : CompositeSourceOver;
hyattb21f8372007-09-04 22:58:27 +0000258 context->drawImage(image(), rect, compositeOperator, document()->page()->inLowQualityImageInterpolationMode());
darinb9481ed2006-03-20 02:57:59 +0000259 }
260}
261
antti@apple.com7f6c5da2007-12-04 19:21:09 +0000262int RenderImage::minimumReplacedHeight() const
darinb9481ed2006-03-20 02:57:59 +0000263{
antti@apple.com7f6c5da2007-12-04 19:21:09 +0000264 return errorOccurred() ? intrinsicSize().height() : 0;
darinb9481ed2006-03-20 02:57:59 +0000265}
266
267HTMLMapElement* RenderImage::imageMap()
268{
269 HTMLImageElement* i = element() && element()->hasTagName(imgTag) ? static_cast<HTMLImageElement*>(element()) : 0;
darin@apple.com640fa302008-02-15 05:03:55 +0000270 return i ? i->document()->getImageMap(i->useMap()) : 0;
darinb9481ed2006-03-20 02:57:59 +0000271}
272
bdakinc4d8acc2006-10-31 21:48:20 +0000273bool RenderImage::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction)
darinb9481ed2006-03-20 02:57:59 +0000274{
bdakinc4d8acc2006-10-31 21:48:20 +0000275 bool inside = RenderReplaced::nodeAtPoint(request, result, _x, _y, _tx, _ty, hitTestAction);
darinb9481ed2006-03-20 02:57:59 +0000276
277 if (inside && element()) {
278 int tx = _tx + m_x;
279 int ty = _ty + m_y;
280
281 HTMLMapElement* map = imageMap();
282 if (map) {
283 // we're a client side image map
bdakin1c628c02006-10-29 22:07:47 +0000284 inside = map->mapMouseEvent(_x - tx, _y - ty, IntSize(contentWidth(), contentHeight()), result);
285 result.setInnerNonSharedNode(element());
darinb9481ed2006-03-20 02:57:59 +0000286 }
287 }
288
289 return inside;
290}
291
292void RenderImage::updateAltText()
293{
294 if (!element())
295 return;
weinigc24ab182006-10-30 22:41:29 +0000296
darinb9481ed2006-03-20 02:57:59 +0000297 if (element()->hasTagName(inputTag))
298 m_altText = static_cast<HTMLInputElement*>(element())->altText();
299 else if (element()->hasTagName(imgTag))
300 m_altText = static_cast<HTMLImageElement*>(element())->altText();
301}
302
303bool RenderImage::isWidthSpecified() const
304{
305 switch (style()->width().type()) {
306 case Fixed:
307 case Percent:
308 return true;
antti@apple.com8fd3ecc2008-01-18 19:51:25 +0000309 case Auto:
310 case Relative: // FIXME: Shouldn't this case return true?
311 case Static:
312 case Intrinsic:
313 case MinIntrinsic:
darinb9481ed2006-03-20 02:57:59 +0000314 return false;
315 }
antti@apple.com8fd3ecc2008-01-18 19:51:25 +0000316 ASSERT(false);
317 return false;
darinb9481ed2006-03-20 02:57:59 +0000318}
319
320bool RenderImage::isHeightSpecified() const
321{
322 switch (style()->height().type()) {
323 case Fixed:
324 case Percent:
325 return true;
antti@apple.com8fd3ecc2008-01-18 19:51:25 +0000326 case Auto:
327 case Relative: // FIXME: Shouldn't this case return true?
328 case Static:
329 case Intrinsic:
330 case MinIntrinsic:
darinb9481ed2006-03-20 02:57:59 +0000331 return false;
332 }
antti@apple.com8fd3ecc2008-01-18 19:51:25 +0000333 ASSERT(false);
334 return false;
darinb9481ed2006-03-20 02:57:59 +0000335}
336
337int RenderImage::calcReplacedWidth() const
338{
bdakin@apple.com05d7e8e2007-12-19 07:53:52 +0000339 if (m_cachedImage && m_cachedImage->imageHasRelativeWidth() && !m_cachedImage->usesImageContainerSize())
340 if (RenderObject* cb = isPositioned() ? container() : containingBlock())
341 m_cachedImage->setImageContainerSize(IntSize(cb->availableWidth(), cb->availableHeight()));
342
darinb9481ed2006-03-20 02:57:59 +0000343 int width;
344 if (isWidthSpecified())
adelec1116ca2006-06-01 05:28:13 +0000345 width = calcReplacedWidthUsing(style()->width());
bdakin@apple.com05d7e8e2007-12-19 07:53:52 +0000346 else if (m_cachedImage && m_cachedImage->usesImageContainerSize())
hyatt@apple.coma8031482008-03-19 17:58:22 +0000347 width = m_cachedImage->imageSize(style()->effectiveZoom()).width();
bdakin@apple.com05d7e8e2007-12-19 07:53:52 +0000348 else if (m_cachedImage && m_cachedImage->imageHasRelativeWidth())
349 width = 0; // If the image is relatively-sized, set the width to 0 until there is a set container size.
darinb9481ed2006-03-20 02:57:59 +0000350 else
351 width = calcAspectRatioWidth();
352
adelec1116ca2006-06-01 05:28:13 +0000353 int minW = calcReplacedWidthUsing(style()->minWidth());
ddkilzerd1687ca2007-01-04 05:28:35 +0000354 int maxW = style()->maxWidth().isUndefined() ? width : calcReplacedWidthUsing(style()->maxWidth());
darinb9481ed2006-03-20 02:57:59 +0000355
darin7bd70952006-04-13 07:07:34 +0000356 return max(minW, min(width, maxW));
darinb9481ed2006-03-20 02:57:59 +0000357}
358
359int RenderImage::calcReplacedHeight() const
360{
361 int height;
362 if (isHeightSpecified())
adelec1116ca2006-06-01 05:28:13 +0000363 height = calcReplacedHeightUsing(style()->height());
bdakin@apple.com05d7e8e2007-12-19 07:53:52 +0000364 else if (m_cachedImage && m_cachedImage->usesImageContainerSize())
hyatt@apple.coma8031482008-03-19 17:58:22 +0000365 height = m_cachedImage->imageSize(style()->effectiveZoom()).height();
bdakin@apple.com05d7e8e2007-12-19 07:53:52 +0000366 else if (m_cachedImage && m_cachedImage->imageHasRelativeHeight())
367 height = 0; // If the image is relatively-sized, set the height to 0 until there is a set container size.
darinb9481ed2006-03-20 02:57:59 +0000368 else
369 height = calcAspectRatioHeight();
370
adelec1116ca2006-06-01 05:28:13 +0000371 int minH = calcReplacedHeightUsing(style()->minHeight());
ddkilzerd1687ca2007-01-04 05:28:35 +0000372 int maxH = style()->maxHeight().isUndefined() ? height : calcReplacedHeightUsing(style()->maxHeight());
darinb9481ed2006-03-20 02:57:59 +0000373
darin7bd70952006-04-13 07:07:34 +0000374 return max(minH, min(height, maxH));
darinb9481ed2006-03-20 02:57:59 +0000375}
376
377int RenderImage::calcAspectRatioWidth() const
378{
darin751cf302007-05-01 22:10:41 +0000379 IntSize size = intrinsicSize();
380 if (!size.height())
darinb9481ed2006-03-20 02:57:59 +0000381 return 0;
kmcculloadfd67d2007-03-03 02:18:43 +0000382 if (!m_cachedImage || m_cachedImage->errorOccurred())
darin751cf302007-05-01 22:10:41 +0000383 return size.width(); // Don't bother scaling.
384 return RenderReplaced::calcReplacedHeight() * size.width() / size.height();
darinb9481ed2006-03-20 02:57:59 +0000385}
386
387int RenderImage::calcAspectRatioHeight() const
388{
darin751cf302007-05-01 22:10:41 +0000389 IntSize size = intrinsicSize();
390 if (!size.width())
darinb9481ed2006-03-20 02:57:59 +0000391 return 0;
kmcculloadfd67d2007-03-03 02:18:43 +0000392 if (!m_cachedImage || m_cachedImage->errorOccurred())
darin751cf302007-05-01 22:10:41 +0000393 return size.height(); // Don't bother scaling.
394 return RenderReplaced::calcReplacedWidth() * size.height() / size.width();
darinb9481ed2006-03-20 02:57:59 +0000395}
396
darin7e7c8e42007-04-25 01:14:03 +0000397void RenderImage::calcPrefWidths()
darinb9481ed2006-03-20 02:57:59 +0000398{
darin7e7c8e42007-04-25 01:14:03 +0000399 ASSERT(prefWidthsDirty());
darinb9481ed2006-03-20 02:57:59 +0000400
darin7e7c8e42007-04-25 01:14:03 +0000401 m_maxPrefWidth = calcReplacedWidth() + paddingLeft() + paddingRight() + borderLeft() + borderRight();
darinb9481ed2006-03-20 02:57:59 +0000402
403 if (style()->width().isPercent() || style()->height().isPercent() ||
404 style()->maxWidth().isPercent() || style()->maxHeight().isPercent() ||
405 style()->minWidth().isPercent() || style()->minHeight().isPercent())
darin7e7c8e42007-04-25 01:14:03 +0000406 m_minPrefWidth = 0;
darinb9481ed2006-03-20 02:57:59 +0000407 else
darin7e7c8e42007-04-25 01:14:03 +0000408 m_minPrefWidth = m_maxPrefWidth;
darinb9481ed2006-03-20 02:57:59 +0000409
darin7e7c8e42007-04-25 01:14:03 +0000410 setPrefWidthsDirty(false);
darinb9481ed2006-03-20 02:57:59 +0000411}
412
413Image* RenderImage::nullImage()
414{
eseidela8445792006-12-28 00:48:37 +0000415 static BitmapImage sharedNullImage;
darinb9481ed2006-03-20 02:57:59 +0000416 return &sharedNullImage;
417}
418
weinigc24ab182006-10-30 22:41:29 +0000419} // namespace WebCore