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, 2008, 2010 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserv
ed. |
5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 return nullptr; | 596 return nullptr; |
597 | 597 |
598 return imageLoader().image()->image(); | 598 return imageLoader().image()->image(); |
599 } | 599 } |
600 | 600 |
601 bool HTMLImageElement::isInteractiveContent() const | 601 bool HTMLImageElement::isInteractiveContent() const |
602 { | 602 { |
603 return fastHasAttribute(usemapAttr); | 603 return fastHasAttribute(usemapAttr); |
604 } | 604 } |
605 | 605 |
606 PassRefPtr<Image> HTMLImageElement::getSourceImageForCanvas(SourceImageStatus* s
tatus, AccelerationHint) const | 606 PassRefPtr<Image> HTMLImageElement::getSourceImageForCanvas(SourceImageStatus* s
tatus, AccelerationHint, SnapshotReason) const |
607 { | 607 { |
608 if (!complete() || !cachedImage()) { | 608 if (!complete() || !cachedImage()) { |
609 *status = IncompleteSourceImageStatus; | 609 *status = IncompleteSourceImageStatus; |
610 return nullptr; | 610 return nullptr; |
611 } | 611 } |
612 | 612 |
613 if (cachedImage()->errorOccurred()) { | 613 if (cachedImage()->errorOccurred()) { |
614 *status = UndecodableSourceImageStatus; | 614 *status = UndecodableSourceImageStatus; |
615 return nullptr; | 615 return nullptr; |
616 } | 616 } |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 { | 812 { |
813 ImageResource* image = cachedImage(); | 813 ImageResource* image = cachedImage(); |
814 if (!image) | 814 if (!image) |
815 return IntSize(); | 815 return IntSize(); |
816 LayoutSize lSize = image->imageSize(LayoutObject::shouldRespectImageOrientat
ion(layoutObject()), 1.0f); | 816 LayoutSize lSize = image->imageSize(LayoutObject::shouldRespectImageOrientat
ion(layoutObject()), 1.0f); |
817 ASSERT(lSize.fraction().isZero()); | 817 ASSERT(lSize.fraction().isZero()); |
818 return IntSize(lSize.width(), lSize.height()); | 818 return IntSize(lSize.width(), lSize.height()); |
819 } | 819 } |
820 | 820 |
821 } // namespace blink | 821 } // namespace blink |
OLD | NEW |