OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 bool CSSImageValue::equals(const CSSImageValue& other) const | 102 bool CSSImageValue::equals(const CSSImageValue& other) const |
103 { | 103 { |
104 return m_absoluteURL == other.m_absoluteURL; | 104 return m_absoluteURL == other.m_absoluteURL; |
105 } | 105 } |
106 | 106 |
107 String CSSImageValue::customCSSText() const | 107 String CSSImageValue::customCSSText() const |
108 { | 108 { |
109 return "url(" + quoteCSSURLIfNeeded(m_absoluteURL) + ")"; | 109 return "url(" + quoteCSSURLIfNeeded(m_absoluteURL) + ")"; |
110 } | 110 } |
111 | 111 |
112 bool CSSImageValue::knownToBeOpaque(const RenderObject* renderer) const | 112 bool CSSImageValue::knownToBeOpaque(const LayoutObject* renderer) const |
113 { | 113 { |
114 return m_image ? m_image->knownToBeOpaque(renderer) : false; | 114 return m_image ? m_image->knownToBeOpaque(renderer) : false; |
115 } | 115 } |
116 | 116 |
117 void CSSImageValue::traceAfterDispatch(Visitor* visitor) | 117 void CSSImageValue::traceAfterDispatch(Visitor* visitor) |
118 { | 118 { |
119 CSSValue::traceAfterDispatch(visitor); | 119 CSSValue::traceAfterDispatch(visitor); |
120 } | 120 } |
121 | 121 |
122 void CSSImageValue::reResolveURL(const Document& document) | 122 void CSSImageValue::reResolveURL(const Document& document) |
123 { | 123 { |
124 KURL url = document.completeURL(m_relativeURL); | 124 KURL url = document.completeURL(m_relativeURL); |
125 if (url == m_absoluteURL) | 125 if (url == m_absoluteURL) |
126 return; | 126 return; |
127 m_absoluteURL = url.string(); | 127 m_absoluteURL = url.string(); |
128 m_accessedImage = false; | 128 m_accessedImage = false; |
129 m_image.clear(); | 129 m_image.clear(); |
130 } | 130 } |
131 | 131 |
132 } // namespace blink | 132 } // namespace blink |
OLD | NEW |