| 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 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
| 5 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2011 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2011 Apple Inc. All rights reserv
ed. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } else { | 100 } else { |
| 101 requestPluginCreationWithoutLayoutObjectIfPossible(); | 101 requestPluginCreationWithoutLayoutObjectIfPossible(); |
| 102 } | 102 } |
| 103 } else if (name == codeAttr) { // TODO(schenney): Remove this? It's not in t
he spec and we're not in the HTMLAppletElement hierarchy | 103 } else if (name == codeAttr) { // TODO(schenney): Remove this? It's not in t
he spec and we're not in the HTMLAppletElement hierarchy |
| 104 m_url = stripLeadingAndTrailingHTMLSpaces(value); | 104 m_url = stripLeadingAndTrailingHTMLSpaces(value); |
| 105 } else if (name == srcAttr) { | 105 } else if (name == srcAttr) { |
| 106 m_url = stripLeadingAndTrailingHTMLSpaces(value); | 106 m_url = stripLeadingAndTrailingHTMLSpaces(value); |
| 107 if (layoutObject() && isImageType()) { | 107 if (layoutObject() && isImageType()) { |
| 108 if (!m_imageLoader) | 108 if (!m_imageLoader) |
| 109 m_imageLoader = HTMLImageLoader::create(this); | 109 m_imageLoader = HTMLImageLoader::create(this); |
| 110 m_imageLoader->updateFromElement(ImageLoader::UpdateIgnorePreviousEr
ror); | 110 m_imageLoader->updateFromElement(0, ImageLoader::UpdateIgnorePreviou
sError); |
| 111 } | 111 } |
| 112 } else { | 112 } else { |
| 113 HTMLPlugInElement::parseAttribute(name, value); | 113 HTMLPlugInElement::parseAttribute(name, value); |
| 114 } | 114 } |
| 115 } | 115 } |
| 116 | 116 |
| 117 void HTMLEmbedElement::parametersForPlugin(Vector<String>& paramNames, Vector<St
ring>& paramValues) | 117 void HTMLEmbedElement::parametersForPlugin(Vector<String>& paramNames, Vector<St
ring>& paramValues) |
| 118 { | 118 { |
| 119 AttributeCollection attributes = this->attributes(); | 119 AttributeCollection attributes = this->attributes(); |
| 120 for (const Attribute& attribute : attributes) { | 120 for (const Attribute& attribute : attributes) { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 { | 190 { |
| 191 // http://www.whatwg.org/specs/web-apps/current-work/#exposed | 191 // http://www.whatwg.org/specs/web-apps/current-work/#exposed |
| 192 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ | 192 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ |
| 193 if (object->isExposed()) | 193 if (object->isExposed()) |
| 194 return false; | 194 return false; |
| 195 } | 195 } |
| 196 return true; | 196 return true; |
| 197 } | 197 } |
| 198 | 198 |
| 199 } | 199 } |
| OLD | NEW |