1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Stefan Schimanski (1Stein@gmx.de)
* Copyright (C) 2004-2020 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "HTMLEmbedElement.h"
#include "CSSPropertyNames.h"
#include "ElementAncestorIteratorInlines.h"
#include "FrameLoader.h"
#include "HTMLImageLoader.h"
#include "HTMLNames.h"
#include "HTMLObjectElement.h"
#include "LocalFrame.h"
#include "LocalFrameView.h"
#include "NodeName.h"
#include "PluginDocument.h"
#include "RenderEmbeddedObject.h"
#include "RenderWidget.h"
#include "Settings.h"
#include "SubframeLoader.h"
#include <wtf/Ref.h>
#include <wtf/TZoneMallocInlines.h>
namespace WebCore {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(HTMLEmbedElement);
using namespace HTMLNames;
inline HTMLEmbedElement::HTMLEmbedElement(const QualifiedName& tagName, Document& document)
: HTMLPlugInImageElement(tagName, document)
{
ASSERT(hasTagName(embedTag));
}
Ref<HTMLEmbedElement> HTMLEmbedElement::create(const QualifiedName& tagName, Document& document)
{
return adoptRef(*new HTMLEmbedElement(tagName, document));
}
Ref<HTMLEmbedElement> HTMLEmbedElement::create(Document& document)
{
return create(embedTag, document);
}
static inline RenderWidget* findWidgetRenderer(const Node* node)
{
if (!node->renderer())
node = ancestorsOfType<HTMLObjectElement>(*node).first();
if (node)
return dynamicDowncast<RenderWidget>(node->renderer());
return nullptr;
}
RenderWidget* HTMLEmbedElement::renderWidgetLoadingPlugin() const
{
RenderWidget* widget = HTMLPlugInImageElement::renderWidgetLoadingPlugin();
return widget ? widget : findWidgetRenderer(this);
}
void HTMLEmbedElement::collectPresentationalHintsForAttribute(const QualifiedName& name, const AtomString& value, MutableStyleProperties& style)
{
if (name == hiddenAttr) {
ASSERT(!value.isNull());
addPropertyToPresentationalHintStyle(style, CSSPropertyWidth, 0, CSSUnitType::CSS_PX);
addPropertyToPresentationalHintStyle(style, CSSPropertyHeight, 0, CSSUnitType::CSS_PX);
} else
HTMLPlugInImageElement::collectPresentationalHintsForAttribute(name, value, style);
}
static bool hasTypeOrSrc(const HTMLEmbedElement& embed)
{
return embed.hasAttributeWithoutSynchronization(typeAttr) || embed.hasAttributeWithoutSynchronization(srcAttr);
}
void HTMLEmbedElement::attributeChanged(const QualifiedName& name, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason attributeModificationReason)
{
HTMLPlugInImageElement::attributeChanged(name, oldValue, newValue, attributeModificationReason);
switch (name.nodeName()) {
case AttributeNames::typeAttr:
m_serviceType = newValue.string().left(newValue.find(';')).convertToASCIILowercase();
// FIXME: The only difference between this and HTMLObjectElement's corresponding
// code is that HTMLObjectElement does setNeedsWidgetUpdate(true). Consider moving
// this up to the HTMLPlugInImageElement to be shared.
if (renderer() && !hasTypeOrSrc(*this))
invalidateStyle();
break;
case AttributeNames::codeAttr:
// FIXME: trimming whitespace is probably redundant with the URL parser
m_url = newValue.string().trim(isASCIIWhitespace);
// FIXME: Why no call to updateImageLoaderWithNewURLSoon?
// FIXME: If both code and src attributes are specified, last one parsed/changed wins. That can't be right!
break;
case AttributeNames::srcAttr:
// FIXME: trimming whitespace is probably redundant with the URL parser
m_url = newValue.string().trim(isASCIIWhitespace);
updateImageLoaderWithNewURLSoon();
if (renderer() && !hasTypeOrSrc(*this))
invalidateStyle();
// FIXME: If both code and src attributes are specified, last one parsed/changed wins. That can't be right!
break;
default:
break;
}
}
void HTMLEmbedElement::parametersForPlugin(Vector<AtomString>& paramNames, Vector<AtomString>& paramValues)
{
if (!hasAttributes())
return;
for (auto& attribute : attributes()) {
paramNames.append(attribute.localName());
paramValues.append(attribute.value());
}
}
// FIXME: This should be unified with HTMLObjectElement::updateWidget and
// moved down into HTMLPluginImageElement.cpp
void HTMLEmbedElement::updateWidget(CreatePlugins createPlugins)
{
ASSERT(!renderEmbeddedObject()->isPluginUnavailable());
ASSERT(needsWidgetUpdate());
if (m_url.isEmpty() && m_serviceType.isEmpty()) {
setNeedsWidgetUpdate(false);
return;
}
// Note these pass m_url and m_serviceType to allow better code sharing with
// <object> which modifies url and serviceType before calling these.
if (!canLoadURL(m_url)) {
setNeedsWidgetUpdate(false);
return;
}
// FIXME: It's unfortunate that we have this special case here.
// See http://trac.webkit.org/changeset/25128 and the plugins/netscape-plugin-setwindow-size.html test.
if (createPlugins == CreatePlugins::No && wouldLoadAsPlugIn(m_url, m_serviceType))
return;
setNeedsWidgetUpdate(false);
// FIXME: These should be joined into a PluginParameters class.
Vector<AtomString> paramNames;
Vector<AtomString> paramValues;
parametersForPlugin(paramNames, paramValues);
Ref<HTMLEmbedElement> protectedThis(*this); // Loading the plugin might remove us from the document.
if (!renderer()) // Do not load the plugin if beforeload removed this element or its renderer.
return;
// Dispatching a beforeLoad event could have executed code that changed the document.
// Make sure the URL is still safe to load.
if (!canLoadURL(m_url))
return;
// FIXME: beforeLoad could have detached the renderer! Just like in the <object> case above.
requestObject(m_url, m_serviceType, paramNames, paramValues);
}
bool HTMLEmbedElement::rendererIsNeeded(const RenderStyle& style)
{
if (!hasTypeOrSrc(*this))
return false;
if (isImageType())
return HTMLPlugInImageElement::rendererIsNeeded(style);
// If my parent is an <object> and is not set to use fallback content, I
// should be ignored and not get a renderer.
if (RefPtr parentObject = dynamicDowncast<HTMLObjectElement>(parentNode())) {
if (!parentObject->renderer())
return false;
if (!parentObject->useFallbackContent()) {
ASSERT(!parentObject->renderer()->isRenderEmbeddedObject());
return false;
}
}
return HTMLPlugInImageElement::rendererIsNeeded(style);
}
bool HTMLEmbedElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == srcAttr || HTMLPlugInImageElement::isURLAttribute(attribute);
}
const AtomString& HTMLEmbedElement::imageSourceURL() const
{
return attributeWithoutSynchronization(srcAttr);
}
void HTMLEmbedElement::addSubresourceAttributeURLs(ListHashSet<URL>& urls) const
{
HTMLPlugInImageElement::addSubresourceAttributeURLs(urls);
addSubresourceURL(urls, document().completeURL(attributeWithoutSynchronization(srcAttr)));
}
}
|