OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
15 * | 15 * |
16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
20 */ | 20 */ |
21 | 21 |
22 #include "core/html/HTMLImageLoader.h" | 22 #include "core/html/HTMLImageLoader.h" |
23 | 23 |
24 #include "core/HTMLNames.h" | 24 #include "core/HTMLNames.h" |
25 #include "core/dom/Element.h" | 25 #include "core/dom/Element.h" |
26 #include "core/events/Event.h" | 26 #include "core/events/Event.h" |
27 #include "core/fetch/ImageResource.h" | 27 #include "core/fetch/ImageResourceContent.h" |
28 #include "core/fetch/ResourceLoadingLog.h" | 28 #include "core/fetch/ResourceLoadingLog.h" |
29 #include "core/html/HTMLImageElement.h" | 29 #include "core/html/HTMLImageElement.h" |
30 #include "core/html/HTMLInputElement.h" | 30 #include "core/html/HTMLInputElement.h" |
31 #include "core/html/HTMLObjectElement.h" | 31 #include "core/html/HTMLObjectElement.h" |
32 #include "core/html/parser/HTMLParserIdioms.h" | 32 #include "core/html/parser/HTMLParserIdioms.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 using namespace HTMLNames; | 36 using namespace HTMLNames; |
37 | 37 |
(...skipping 23 matching lines...) Expand all Loading... |
61 // blocker is the large amount of rebaselining it requires. | 61 // blocker is the large amount of rebaselining it requires. |
62 if (toHTMLElement(element())->altText().isEmpty()) | 62 if (toHTMLElement(element())->altText().isEmpty()) |
63 return; | 63 return; |
64 | 64 |
65 if (isHTMLImageElement(element())) | 65 if (isHTMLImageElement(element())) |
66 toHTMLImageElement(element())->ensureCollapsedOrFallbackContent(); | 66 toHTMLImageElement(element())->ensureCollapsedOrFallbackContent(); |
67 else if (isHTMLInputElement(element())) | 67 else if (isHTMLInputElement(element())) |
68 toHTMLInputElement(element())->ensureFallbackContent(); | 68 toHTMLInputElement(element())->ensureFallbackContent(); |
69 } | 69 } |
70 | 70 |
71 void HTMLImageLoader::imageNotifyFinished(ImageResource*) { | 71 void HTMLImageLoader::imageNotifyFinished(ImageResourceContent*) { |
72 ImageResource* cachedImage = image(); | 72 ImageResourceContent* cachedImage = image(); |
73 Element* element = this->element(); | 73 Element* element = this->element(); |
74 ImageLoader::imageNotifyFinished(cachedImage); | 74 ImageLoader::imageNotifyFinished(cachedImage); |
75 | 75 |
76 bool loadError = cachedImage->errorOccurred(); | 76 bool loadError = cachedImage->errorOccurred(); |
77 if (isHTMLImageElement(*element)) { | 77 if (isHTMLImageElement(*element)) { |
78 if (loadError) | 78 if (loadError) |
79 toHTMLImageElement(element)->ensureCollapsedOrFallbackContent(); | 79 toHTMLImageElement(element)->ensureCollapsedOrFallbackContent(); |
80 else | 80 else |
81 toHTMLImageElement(element)->ensurePrimaryContent(); | 81 toHTMLImageElement(element)->ensurePrimaryContent(); |
82 } | 82 } |
83 | 83 |
84 if (isHTMLInputElement(*element)) { | 84 if (isHTMLInputElement(*element)) { |
85 if (loadError) | 85 if (loadError) |
86 toHTMLInputElement(element)->ensureFallbackContent(); | 86 toHTMLInputElement(element)->ensureFallbackContent(); |
87 else | 87 else |
88 toHTMLInputElement(element)->ensurePrimaryContent(); | 88 toHTMLInputElement(element)->ensurePrimaryContent(); |
89 } | 89 } |
90 | 90 |
91 if ((loadError || cachedImage->response().httpStatusCode() >= 400) && | 91 if ((loadError || cachedImage->response().httpStatusCode() >= 400) && |
92 isHTMLObjectElement(*element)) | 92 isHTMLObjectElement(*element)) |
93 toHTMLObjectElement(element)->renderFallbackContent(); | 93 toHTMLObjectElement(element)->renderFallbackContent(); |
94 } | 94 } |
95 | 95 |
96 } // namespace blink | 96 } // namespace blink |
OLD | NEW |