| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const | 39 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const |
| 40 { | 40 { |
| 41 return m_imageGeneratorValue.get(); | 41 return m_imageGeneratorValue.get(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::computedCSSValue() const | 44 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::computedCSSValue() const |
| 45 { | 45 { |
| 46 return m_imageGeneratorValue->valueWithURLsMadeAbsolute(); | 46 return m_imageGeneratorValue->valueWithURLsMadeAbsolute(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 void StyleGeneratedImage::updateConcreteObjectSize(const LayoutSize& defaultObje
ctSize) |
| 50 { |
| 51 if (!m_fixedSize) |
| 52 m_defaultObjectSize = defaultObjectSize; |
| 53 } |
| 54 |
| 49 LayoutSize StyleGeneratedImage::imageSize(const LayoutObject* layoutObject, floa
t multiplier) const | 55 LayoutSize StyleGeneratedImage::imageSize(const LayoutObject* layoutObject, floa
t multiplier) const |
| 50 { | 56 { |
| 51 if (m_fixedSize) { | 57 if (!m_fixedSize) |
| 52 LayoutSize fixedSize(m_imageGeneratorValue->fixedSize(layoutObject)); | 58 return m_defaultObjectSize; |
| 53 if (multiplier == 1.0f) | |
| 54 return fixedSize; | |
| 55 | 59 |
| 56 LayoutUnit width(fixedSize.width() * multiplier); | 60 ASSERT(m_defaultObjectSize.isEmpty()); |
| 57 LayoutUnit height(fixedSize.height() * multiplier); | 61 LayoutSize fixedSize(m_imageGeneratorValue->fixedSize(layoutObject)); |
| 62 if (multiplier == 1.0f) |
| 63 return fixedSize; |
| 58 | 64 |
| 59 // Don't let images that have a width/height >= 1 shrink below 1 when zo
omed. | 65 LayoutUnit width(fixedSize.width() * multiplier); |
| 60 if (fixedSize.width() > LayoutUnit()) | 66 LayoutUnit height(fixedSize.height() * multiplier); |
| 61 width = max(LayoutUnit(1), width); | |
| 62 | 67 |
| 63 if (fixedSize.height() > LayoutUnit()) | 68 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed
. |
| 64 height = max(LayoutUnit(1), height); | 69 if (fixedSize.width() > LayoutUnit()) |
| 70 width = max(LayoutUnit(1), width); |
| 65 | 71 |
| 66 return LayoutSize(width, height); | 72 if (fixedSize.height() > LayoutUnit()) |
| 67 } | 73 height = max(LayoutUnit(1), height); |
| 68 | 74 |
| 69 return LayoutSize(); | 75 return LayoutSize(width, height); |
| 70 } | 76 } |
| 71 | 77 |
| 72 void StyleGeneratedImage::computeIntrinsicDimensions(const LayoutObject* layoutO
bject, FloatSize& intrinsicSize, FloatSize& intrinsicRatio) | 78 void StyleGeneratedImage::computeIntrinsicDimensions(const LayoutObject* layoutO
bject, FloatSize& intrinsicSize, FloatSize& intrinsicRatio) |
| 73 { | 79 { |
| 74 // At a zoom level of 1 the image is guaranteed to have an integer size. | 80 // At a zoom level of 1 the image is guaranteed to have an integer size. |
| 75 LayoutSize size = imageSize(layoutObject, 1); | 81 LayoutSize size = imageSize(layoutObject, 1); |
| 76 ASSERT(size.fraction().isZero()); | 82 ASSERT(size.fraction().isZero()); |
| 77 intrinsicSize = intrinsicRatio = FloatSize(size); | 83 intrinsicSize = intrinsicRatio = FloatSize(size); |
| 78 } | 84 } |
| 79 | 85 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 97 return m_imageGeneratorValue->knownToBeOpaque(layoutObject); | 103 return m_imageGeneratorValue->knownToBeOpaque(layoutObject); |
| 98 } | 104 } |
| 99 | 105 |
| 100 DEFINE_TRACE(StyleGeneratedImage) | 106 DEFINE_TRACE(StyleGeneratedImage) |
| 101 { | 107 { |
| 102 visitor->trace(m_imageGeneratorValue); | 108 visitor->trace(m_imageGeneratorValue); |
| 103 StyleImage::trace(visitor); | 109 StyleImage::trace(visitor); |
| 104 } | 110 } |
| 105 | 111 |
| 106 } // namespace blink | 112 } // namespace blink |
| OLD | NEW |