blob: 0fe52d9a5d78ecc9f6a4b893b3acb047704864bb [file] [log] [blame]
/*
* Copyright (C) 2012 Google 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:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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 THE COPYRIGHT
* OWNER 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 "core/dom/shadow/InsertionPoint.h"
#include "HTMLNames.h"
#include "core/dom/QualifiedName.h"
#include "core/dom/StaticNodeList.h"
#include "core/dom/shadow/ElementShadow.h"
#include "core/dom/shadow/ShadowRoot.h"
namespace WebCore {
using namespace HTMLNames;
InsertionPoint::InsertionPoint(const QualifiedName& tagName, Document* document)
: HTMLElement(tagName, document, CreateInsertionPoint)
, m_registeredWithShadowRoot(false)
{
setHasCustomStyleCallbacks();
}
InsertionPoint::~InsertionPoint()
{
}
void InsertionPoint::attach(const AttachContext& context)
{
if (ShadowRoot* shadowRoot = containingShadowRoot())
shadowRoot->host()->ensureDistribution();
for (size_t i = 0; i < m_distribution.size(); ++i) {
if (!m_distribution.at(i)->attached())
m_distribution.at(i)->attach(context);
}
HTMLElement::attach(context);
}
void InsertionPoint::detach(const AttachContext& context)
{
if (ShadowRoot* shadowRoot = containingShadowRoot())
shadowRoot->host()->ensureDistribution();
for (size_t i = 0; i < m_distribution.size(); ++i)
m_distribution.at(i)->detach(context);
HTMLElement::detach(context);
}
void InsertionPoint::willRecalcStyle(StyleChange change)
{
if (change < Inherit)
return;
if (ShadowRoot* shadowRoot = containingShadowRoot()) {
shadowRoot->host()->ensureDistribution();
shadowRoot->owner()->distributor().setNeedsStyleRecalcIfDistributedTo(this);
}
}
bool InsertionPoint::shouldUseFallbackElements() const
{
return isActive() && !hasDistribution();
}
bool InsertionPoint::isActive() const
{
if (!containingShadowRoot())
return false;
const Node* node = parentNode();
while (node) {
if (node->isInsertionPoint())
return false;
node = node->parentNode();
}
return true;
}
PassRefPtr<NodeList> InsertionPoint::getDistributedNodes() const
{
if (ShadowRoot* shadowRoot = containingShadowRoot())
shadowRoot->host()->ensureDistribution();
Vector<RefPtr<Node> > nodes;
for (size_t i = 0; i < m_distribution.size(); ++i)
nodes.append(m_distribution.at(i));
return StaticNodeList::adopt(nodes);
}
bool InsertionPoint::rendererIsNeeded(const NodeRenderingContext& context)
{
return !isActive() && HTMLElement::rendererIsNeeded(context);
}
void InsertionPoint::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
{
HTMLElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
if (ShadowRoot* root = containingShadowRoot())
if (ElementShadow* rootOwner = root->owner())
rootOwner->invalidateDistribution();
}
Node::InsertionNotificationRequest InsertionPoint::insertedInto(ContainerNode* insertionPoint)
{
HTMLElement::insertedInto(insertionPoint);
if (ShadowRoot* root = containingShadowRoot()) {
if (ElementShadow* rootOwner = root->owner()) {
rootOwner->distributor().didShadowBoundaryChange(root->host());
if (isActive() && !m_registeredWithShadowRoot && insertionPoint->treeScope()->rootNode() == root) {
m_registeredWithShadowRoot = true;
root->ensureScopeDistribution()->registerInsertionPoint(this);
if (canAffectSelector())
rootOwner->willAffectSelector();
}
}
}
return InsertionDone;
}
void InsertionPoint::removedFrom(ContainerNode* insertionPoint)
{
ShadowRoot* root = containingShadowRoot();
if (!root)
root = insertionPoint->containingShadowRoot();
// host can be null when removedFrom() is called from ElementShadow destructor.
ElementShadow* rootOwner = root ? root->owner() : 0;
if (rootOwner)
rootOwner->invalidateDistribution();
// Since this insertion point is no longer visible from the shadow subtree, it need to clean itself up.
clearDistribution();
if (m_registeredWithShadowRoot && insertionPoint->treeScope()->rootNode() == root) {
ASSERT(root);
m_registeredWithShadowRoot = false;
root->ensureScopeDistribution()->unregisterInsertionPoint(this);
if (rootOwner && canAffectSelector())
rootOwner->willAffectSelector();
}
HTMLElement::removedFrom(insertionPoint);
}
void InsertionPoint::parseAttribute(const QualifiedName& name, const AtomicString& value)
{
if (name == reset_style_inheritanceAttr) {
if (!inDocument() || !attached() || !isActive())
return;
containingShadowRoot()->host()->setNeedsStyleRecalc();
} else
HTMLElement::parseAttribute(name, value);
}
bool InsertionPoint::resetStyleInheritance() const
{
return fastHasAttribute(reset_style_inheritanceAttr);
}
void InsertionPoint::setResetStyleInheritance(bool value)
{
setBooleanAttribute(reset_style_inheritanceAttr, value);
}
bool InsertionPoint::contains(const Node* node) const
{
return m_distribution.contains(const_cast<Node*>(node)) || (node->isShadowRoot() && toShadowRoot(node)->insertionPoint() == this);
}
const CSSSelectorList& InsertionPoint::emptySelectorList()
{
DEFINE_STATIC_LOCAL(CSSSelectorList, selectorList, (CSSSelectorList()));
return selectorList;
}
InsertionPoint* resolveReprojection(const Node* projectedNode)
{
InsertionPoint* insertionPoint = 0;
const Node* current = projectedNode;
while (current) {
if (ElementShadow* shadow = shadowOfParentForDistribution(current)) {
shadow->host()->ensureDistribution();
if (ShadowRoot* root = current->containingShadowRoot())
root->host()->ensureDistribution();
if (InsertionPoint* insertedTo = shadow->distributor().findInsertionPointFor(projectedNode)) {
current = insertedTo;
insertionPoint = insertedTo;
continue;
}
}
if (Node* parent = parentNodeForDistribution(current)) {
if (InsertionPoint* insertedTo = parent->isShadowRoot() ? toShadowRoot(parent)->insertionPoint() : 0) {
current = insertedTo;
insertionPoint = insertedTo;
continue;
}
}
break;
}
return insertionPoint;
}
void collectInsertionPointsWhereNodeIsDistributed(const Node* node, Vector<InsertionPoint*, 8>& results)
{
const Node* current = node;
while (true) {
if (ElementShadow* shadow = shadowOfParentForDistribution(current)) {
if (ShadowRoot* root = current->containingShadowRoot())
root->host()->ensureDistribution();
if (InsertionPoint* insertedTo = shadow->distributor().findInsertionPointFor(node)) {
current = insertedTo;
results.append(insertedTo);
continue;
}
}
if (Node* parent = parentNodeForDistribution(current)) {
if (InsertionPoint* insertedTo = parent->isShadowRoot() ? toShadowRoot(parent)->insertionPoint() : 0) {
current = insertedTo;
results.append(insertedTo);
continue;
}
}
return;
}
}
} // namespace WebCore