| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 if (text && text->textContent() != value) | 259 if (text && text->textContent() != value) |
| 260 text->setTextContent(altText()); | 260 text->setTextContent(altText()); |
| 261 } | 261 } |
| 262 } else if (name == srcAttr || name == srcsetAttr || name == sizesAttr) { | 262 } else if (name == srcAttr || name == srcsetAttr || name == sizesAttr) { |
| 263 selectSourceURL(ImageLoader::UpdateIgnorePreviousError); | 263 selectSourceURL(ImageLoader::UpdateIgnorePreviousError); |
| 264 } else if (name == usemapAttr) { | 264 } else if (name == usemapAttr) { |
| 265 setIsLink(!value.isNull()); | 265 setIsLink(!value.isNull()); |
| 266 } else if (name == referrerpolicyAttr) { | 266 } else if (name == referrerpolicyAttr) { |
| 267 m_referrerPolicy = ReferrerPolicyDefault; | 267 m_referrerPolicy = ReferrerPolicyDefault; |
| 268 if (!value.isNull()) | 268 if (!value.isNull()) |
| 269 SecurityPolicy::referrerPolicyFromString(value, &m_referrerPolicy); | 269 SecurityPolicy::referrerPolicyFromStringWithLegacyKeywords(value, &m
_referrerPolicy); |
| 270 } else { | 270 } else { |
| 271 HTMLElement::parseAttribute(name, oldValue, value); | 271 HTMLElement::parseAttribute(name, oldValue, value); |
| 272 } | 272 } |
| 273 } | 273 } |
| 274 | 274 |
| 275 String HTMLImageElement::altText() const | 275 String HTMLImageElement::altText() const |
| 276 { | 276 { |
| 277 // lets figure out the alt text.. magic stuff | 277 // lets figure out the alt text.. magic stuff |
| 278 // http://www.w3.org/TR/1998/REC-html40-19980424/appendix/notes.html#altgen | 278 // http://www.w3.org/TR/1998/REC-html40-19980424/appendix/notes.html#altgen |
| 279 // also heavily discussed by Hixie on bugzilla | 279 // also heavily discussed by Hixie on bugzilla |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 { | 827 { |
| 828 ImageResource* image = cachedImage(); | 828 ImageResource* image = cachedImage(); |
| 829 if (!image) | 829 if (!image) |
| 830 return IntSize(); | 830 return IntSize(); |
| 831 LayoutSize lSize = image->imageSize(LayoutObject::shouldRespectImageOrientat
ion(layoutObject()), 1.0f); | 831 LayoutSize lSize = image->imageSize(LayoutObject::shouldRespectImageOrientat
ion(layoutObject()), 1.0f); |
| 832 DCHECK(lSize.fraction().isZero()); | 832 DCHECK(lSize.fraction().isZero()); |
| 833 return IntSize(lSize.width().toInt(), lSize.height().toInt()); | 833 return IntSize(lSize.width().toInt(), lSize.height().toInt()); |
| 834 } | 834 } |
| 835 | 835 |
| 836 } // namespace blink | 836 } // namespace blink |
| OLD | NEW |