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
|
/*
* Copyright (C) 2022 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. AND ITS 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 APPLE INC. OR ITS 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 "ContainerQueryEvaluator.h"
#include "CSSPrimitiveValue.h"
#include "CSSToLengthConversionData.h"
#include "CSSValueList.h"
#include "ComposedTreeAncestorIterator.h"
#include "ContainerQueryFeatures.h"
#include "Document.h"
#include "MediaList.h"
#include "NodeRenderStyle.h"
#include "RenderStyleInlines.h"
#include "RenderView.h"
#include "StyleRule.h"
#include "StyleScope.h"
namespace WebCore::Style {
ContainerQueryEvaluator::ContainerQueryEvaluator(const Element& element, SelectionMode selectionMode, ScopeOrdinal scopeOrdinal, ContainerQueryEvaluationState* evaluationState)
: m_element(element)
, m_selectionMode(selectionMode)
, m_scopeOrdinal(scopeOrdinal)
, m_evaluationState(evaluationState)
{
}
bool ContainerQueryEvaluator::evaluate(const CQ::ContainerQuery& containerQuery) const
{
auto context = featureEvaluationContextForQuery(containerQuery);
if (!context)
return false;
return evaluateCondition(containerQuery.condition, *context) == MQ::EvaluationResult::True;
}
static const RenderStyle* styleForContainer(const Element& container, OptionSet<CQ::Axis> requiredAxes, const ContainerQueryEvaluationState* evaluationState)
{
// Any element can be a style container and we haven't necessarily committed the style to render tree yet.
// Look it up from the currently computed style update instead.
if (requiredAxes.isEmpty() && evaluationState && evaluationState->styleUpdate)
return evaluationState->styleUpdate->elementStyle(container);
return container.existingComputedStyle();
}
auto ContainerQueryEvaluator::featureEvaluationContextForQuery(const CQ::ContainerQuery& containerQuery) const -> std::optional<MQ::FeatureEvaluationContext>
{
// "For each element, the query container to be queried is selected from among the element’s
// ancestor query containers that have a valid container-type for all the container features
// in the <container-condition>. The optional <container-name> filters the set of query containers
// considered to just those with a matching query container name."
// https://drafts.csswg.org/css-contain-3/#container-rule
// "If the <container-query> contains unknown or unsupported container features, no query container will be selected."
if (containerQuery.containsUnknownFeature == CQ::ContainsUnknownFeature::Yes)
return { };
Ref element = m_element;
RefPtr container = selectContainer(containerQuery.requiredAxes, containerQuery.name, element.get(), m_selectionMode, m_scopeOrdinal, m_evaluationState);
if (!container)
return { };
CheckedPtr containerStyle = styleForContainer(*container.get(), containerQuery.requiredAxes, m_evaluationState);
if (!containerStyle)
return { };
RefPtr containerParent = container->parentElementInComposedTree();
CheckedPtr containerParentStyle = containerParent ? styleForContainer(*containerParent, containerQuery.requiredAxes, m_evaluationState) : containerStyle;
Ref document = element->document();
CheckedPtr rootStyle = document->documentElement()->renderStyle();
return MQ::FeatureEvaluationContext {
document.get(),
CSSToLengthConversionData { *containerStyle, rootStyle.get(), containerParentStyle.get(), document->renderView(), container.get() },
container->renderer()
};
}
const Element* ContainerQueryEvaluator::selectContainer(OptionSet<CQ::Axis> requiredAxes, const String& name, const Element& element, SelectionMode selectionMode, ScopeOrdinal scopeOrdinal, const ContainerQueryEvaluationState* evaluationState)
{
// "For each element, the query container to be queried is selected from among the element’s
// ancestor query containers that have a valid container-type for all the container features
// in the <container-condition>. The optional <container-name> filters the set of query containers
// considered to just those with a matching query container name."
// https://drafts.csswg.org/css-contain-3/#container-rule
auto isValidContainerForRequiredAxes = [&](ContainerType containerType, const RenderElement* principalBox) {
// Any container is valid for style queries.
if (requiredAxes.isEmpty())
return true;
switch (containerType) {
case ContainerType::Size:
return true;
case ContainerType::InlineSize:
// Without a principal box the container matches but the query against it will evaluate to Unknown.
if (!principalBox)
return true;
if (requiredAxes.contains(CQ::Axis::Block))
return false;
return !requiredAxes.contains(principalBox->isHorizontalWritingMode() ? CQ::Axis::Height : CQ::Axis::Width);
case ContainerType::Normal:
return false;
}
RELEASE_ASSERT_NOT_REACHED();
};
auto isContainerForQuery = [&](const Element& candidateElement, const Element* originatingElement = nullptr) {
auto style = styleForContainer(candidateElement, requiredAxes, evaluationState);
if (!style)
return false;
if (!isValidContainerForRequiredAxes(style->containerType(), candidateElement.renderer()))
return false;
if (name.isEmpty())
return true;
return style->containerNames().containsIf([&](auto& scopedName) {
auto isNameFromAllowedScope = [&](auto& scopedName) {
// Names from :host rules are allowed when the candidate is the host element.
RefPtr host = originatingElement ? originatingElement->shadowHost() : element.shadowHost();
auto isHost = host == &candidateElement;
if (scopedName.scopeOrdinal == ScopeOrdinal::Shadow && isHost)
return true;
// Otherwise names from the inner scopes are ignored.
return scopedName.scopeOrdinal <= ScopeOrdinal::Element;
};
return isNameFromAllowedScope(scopedName) && scopedName.name == name;
});
};
auto findOriginatingElement = [&]() -> const Element* {
// ::part() selectors can query its originating host, but not internal query containers inside the shadow tree.
if (selectionMode == SelectionMode::PartPseudoElement) {
if (scopeOrdinal <= ScopeOrdinal::ContainingHost)
return hostForScopeOrdinal(element, scopeOrdinal);
ASSERT(scopeOrdinal == ScopeOrdinal::Element);
return element.shadowHost();
}
// ::slotted() selectors can query containers inside the shadow tree, including the slot itself.
if (scopeOrdinal >= ScopeOrdinal::FirstSlot && scopeOrdinal <= ScopeOrdinal::SlotLimit)
return assignedSlotForScopeOrdinal(element, scopeOrdinal);
return nullptr;
};
if (RefPtr originatingElement = findOriginatingElement()) {
// For selectors with pseudo elements, query containers can be established by the shadow-including inclusive ancestors of the ultimate originating element.
for (RefPtr ancestor = originatingElement; ancestor; ancestor = ancestor->parentOrShadowHostElement()) {
if (isContainerForQuery(*ancestor.get(), originatingElement.get()))
return ancestor.get();
}
return nullptr;
}
if (selectionMode == SelectionMode::PseudoElement) {
if (isContainerForQuery(element))
return &element;
}
if (evaluationState && !requiredAxes.isEmpty()) {
for (auto& container : makeReversedRange(evaluationState->sizeQueryContainers)) {
if (isContainerForQuery(container))
return container.ptr();
}
return { };
}
for (RefPtr ancestor = element.parentOrShadowHostElement(); ancestor; ancestor = ancestor->parentOrShadowHostElement()) {
if (isContainerForQuery(*ancestor.get()))
return ancestor.get();
}
return { };
}
}
|