summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/rendering/RenderImage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/RenderImage.cpp')
-rw-r--r--Source/WebCore/rendering/RenderImage.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/WebCore/rendering/RenderImage.cpp b/Source/WebCore/rendering/RenderImage.cpp
index 7369f4e..9500aeb 100644
--- a/Source/WebCore/rendering/RenderImage.cpp
+++ b/Source/WebCore/rendering/RenderImage.cpp
@@ -85,7 +85,7 @@ static const unsigned short paddingHeight = 4;
// Alt text is restricted to this maximum size, in pixels. These are
// signed integers because they are compared with other signed values.
-static const int maxAltTextWidth = 1024;
+static const float maxAltTextWidth = 1024;
static const int maxAltTextHeight = 256;
IntSize RenderImage::imageSizeForError(CachedImage* newImage) const
@@ -449,7 +449,6 @@ bool RenderImage::isLogicalWidthSpecified() const
return true;
case Auto:
case Relative: // FIXME: Shouldn't this case return true?
- case Static:
case Intrinsic:
case MinIntrinsic:
return false;
@@ -466,7 +465,6 @@ bool RenderImage::isLogicalHeightSpecified() const
return true;
case Auto:
case Relative: // FIXME: Shouldn't this case return true?
- case Static:
case Intrinsic:
case MinIntrinsic:
return false;