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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* Copyright (C) 2007-2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "HTMLSourceElement.h"
#include "CSSSerializationContext.h"
#include "ElementInlines.h"
#include "Event.h"
#include "EventNames.h"
#include "HTMLImageElement.h"
#include "HTMLNames.h"
#include "HTMLPictureElement.h"
#include "HTMLSrcsetParser.h"
#include "Logging.h"
#include "MediaQueryParser.h"
#include "MediaQueryParserContext.h"
#include "NodeName.h"
#include <wtf/TZoneMallocInlines.h>
#if ENABLE(VIDEO)
#include "HTMLMediaElement.h"
#endif
#if ENABLE(MODEL_ELEMENT)
#include "HTMLModelElement.h"
#endif
namespace WebCore {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(HTMLSourceElement);
using namespace HTMLNames;
inline HTMLSourceElement::HTMLSourceElement(const QualifiedName& tagName, Document& document)
: HTMLElement(tagName, document, TypeFlag::HasDidMoveToNewDocument)
, ActiveDOMObject(document)
{
LOG(Media, "HTMLSourceElement::HTMLSourceElement - %p", this);
ASSERT(hasTagName(sourceTag));
}
Ref<HTMLSourceElement> HTMLSourceElement::create(const QualifiedName& tagName, Document& document)
{
auto sourceElement = adoptRef(*new HTMLSourceElement(tagName, document));
sourceElement->suspendIfNeeded();
return sourceElement;
}
Ref<HTMLSourceElement> HTMLSourceElement::create(Document& document)
{
return create(sourceTag, document);
}
Node::InsertedIntoAncestorResult HTMLSourceElement::insertedIntoAncestor(InsertionType insertionType, ContainerNode& parentOfInsertedTree)
{
HTMLElement::insertedIntoAncestor(insertionType, parentOfInsertedTree);
RefPtr<Element> parent = parentElement();
if (parent == &parentOfInsertedTree) {
#if ENABLE(VIDEO)
if (RefPtr mediaElement = dynamicDowncast<HTMLMediaElement>(*parent))
mediaElement->sourceWasAdded(*this);
else
#endif
#if ENABLE(MODEL_ELEMENT)
if (RefPtr modelElement = dynamicDowncast<HTMLModelElement>(*parent))
modelElement->sourcesChanged();
else
#endif
if (RefPtr pictureElement = dynamicDowncast<HTMLPictureElement>(*parent)) {
// The new source element only is a relevant mutation if it precedes any img element.
m_shouldCallSourcesChanged = true;
for (const Node* node = previousSibling(); node; node = node->previousSibling()) {
if (is<HTMLImageElement>(*node))
m_shouldCallSourcesChanged = false;
}
if (m_shouldCallSourcesChanged)
pictureElement->sourcesChanged();
}
}
return InsertedIntoAncestorResult::Done;
}
void HTMLSourceElement::removedFromAncestor(RemovalType removalType, ContainerNode& oldParentOfRemovedTree)
{
HTMLElement::removedFromAncestor(removalType, oldParentOfRemovedTree);
if (!parentNode() && is<Element>(oldParentOfRemovedTree)) {
#if ENABLE(VIDEO)
if (RefPtr medialElement = dynamicDowncast<HTMLMediaElement>(oldParentOfRemovedTree))
medialElement->sourceWasRemoved(*this);
else
#endif
#if ENABLE(MODEL_ELEMENT)
if (RefPtr model = dynamicDowncast<HTMLModelElement>(oldParentOfRemovedTree))
model->sourcesChanged();
else
#endif
if (m_shouldCallSourcesChanged) {
downcast<HTMLPictureElement>(oldParentOfRemovedTree).sourcesChanged();
m_shouldCallSourcesChanged = false;
}
}
}
void HTMLSourceElement::didMoveToNewDocument(Document& oldDocument, Document& newDocument)
{
HTMLElement::didMoveToNewDocument(oldDocument, newDocument);
ActiveDOMObject::didMoveToNewDocument(newDocument);
}
void HTMLSourceElement::scheduleErrorEvent()
{
LOG(Media, "HTMLSourceElement::scheduleErrorEvent - %p", this);
if (m_errorEventCancellationGroup.hasPendingTask())
return;
queueCancellableTaskToDispatchEvent(*this, TaskSource::MediaElement, m_errorEventCancellationGroup, Event::create(eventNames().errorEvent, Event::CanBubble::No, Event::IsCancelable::Yes));
}
void HTMLSourceElement::cancelPendingErrorEvent()
{
LOG(Media, "HTMLSourceElement::cancelPendingErrorEvent - %p", this);
m_errorEventCancellationGroup.cancel();
}
bool HTMLSourceElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
}
bool HTMLSourceElement::attributeContainsURL(const Attribute& attribute) const
{
return attribute.name() == srcsetAttr
|| HTMLElement::attributeContainsURL(attribute);
}
void HTMLSourceElement::stop()
{
cancelPendingErrorEvent();
}
void HTMLSourceElement::attributeChanged(const QualifiedName& name, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason attributeModificationReason)
{
HTMLElement::attributeChanged(name, oldValue, newValue, attributeModificationReason);
switch (name.nodeName()) {
case AttributeNames::typeAttr: {
RefPtr parent = parentElement();
if (m_shouldCallSourcesChanged && parent)
downcast<HTMLPictureElement>(*parent).sourcesChanged();
#if ENABLE(MODEL_ELEMENT)
if (RefPtr parentModelElement = dynamicDowncast<HTMLModelElement>(parent.get()))
parentModelElement->sourcesChanged();
#endif
break;
}
case AttributeNames::srcsetAttr:
case AttributeNames::sizesAttr:
case AttributeNames::mediaAttr: {
if (name == mediaAttr)
m_cachedParsedMediaAttribute = std::nullopt;
RefPtr parent = parentElement();
if (m_shouldCallSourcesChanged && parent)
downcast<HTMLPictureElement>(*parent).sourcesChanged();
break;
}
case AttributeNames::widthAttr:
case AttributeNames::heightAttr:
if (RefPtr parent = dynamicDowncast<HTMLPictureElement>(parentElement()))
parent->sourceDimensionAttributesChanged(*this);
break;
#if ENABLE(MODEL_ELEMENT)
case AttributeNames::srcAttr:
if (RefPtr parent = dynamicDowncast<HTMLModelElement>(parentElement()))
parent->sourcesChanged();
break;
#endif
default:
break;
}
}
const MQ::MediaQueryList& HTMLSourceElement::parsedMediaAttribute(Document& document) const
{
if (!m_cachedParsedMediaAttribute) {
auto& value = attributeWithoutSynchronization(mediaAttr);
m_cachedParsedMediaAttribute = MQ::MediaQueryParser::parse(value, MediaQueryParserContext { document });
}
return m_cachedParsedMediaAttribute.value();
}
Attribute HTMLSourceElement::replaceURLsInAttributeValue(const Attribute& attribute, const CSS::SerializationContext& serializationContext) const
{
if (attribute.name() != srcsetAttr)
return attribute;
if (serializationContext.replacementURLStrings.isEmpty())
return attribute;
return Attribute { srcsetAttr, AtomString { replaceURLsInSrcsetAttribute(*this, StringView(attribute.value()), serializationContext) } };
}
void HTMLSourceElement::addCandidateSubresourceURLs(ListHashSet<URL>& urls) const
{
getURLsFromSrcsetAttribute(*this, attributeWithoutSynchronization(srcsetAttr), urls);
}
Ref<Element> HTMLSourceElement::cloneElementWithoutAttributesAndChildren(Document& document, CustomElementRegistry*)
{
Ref clone = create(document);
#if ENABLE(ATTACHMENT_ELEMENT)
cloneAttachmentAssociatedElementWithoutAttributesAndChildren(clone, document);
#endif
return clone;
}
void HTMLSourceElement::copyNonAttributePropertiesFromElement(const Element& source)
{
#if ENABLE(ATTACHMENT_ELEMENT)
auto& sourceElement = downcast<HTMLSourceElement>(source);
copyAttachmentAssociatedPropertiesFromElement(sourceElement);
#endif
Element::copyNonAttributePropertiesFromElement(source);
}
}
|