| /* |
| * 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, document.cssParserContext()); |
| } |
| 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*) const |
| { |
| 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); |
| } |
| |
| } |