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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
* Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
* Copyright (C) 2005-2019 Apple Inc. All rights reserved.
* Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
* Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
* Copyright (C) Research In Motion Limited 2011. All rights reserved.
* Copyright (C) 2012, 2013 Google Inc. All rights reserved.
* Copyright (C) 2014 Igalia S.L.
*
* 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 "StyleResolver.h"
#include "CSSCustomPropertyValue.h"
#include "CSSFontSelector.h"
#include "CSSKeyframeRule.h"
#include "CSSKeyframesRule.h"
#include "CSSParser.h"
#include "CSSPrimitiveValueMappings.h"
#include "CSSPropertyNames.h"
#include "CSSSelector.h"
#include "CSSStyleRule.h"
#include "CSSStyleSheet.h"
#include "CachedResourceLoader.h"
#include "CompositeOperation.h"
#include "Document.h"
#include "ElementRuleCollector.h"
#include "FrameSelection.h"
#include "InspectorInstrumentation.h"
#include "KeyframeList.h"
#include "LocalFrame.h"
#include "LocalFrameView.h"
#include "Logging.h"
#include "MediaList.h"
#include "NodeRenderStyle.h"
#include "PageRuleCollector.h"
#include "RenderScrollbar.h"
#include "RenderStyleConstants.h"
#include "RenderStyleInlines.h"
#include "RenderStyleSetters.h"
#include "RenderView.h"
#include "ResolvedStyle.h"
#include "RuleSet.h"
#include "SVGDocumentExtensions.h"
#include "SVGElement.h"
#include "SVGFontFaceElement.h"
#include "Settings.h"
#include "ShadowPseudoIds.h"
#include "ShadowRoot.h"
#include "SharedStringHash.h"
#include "StyleAdjuster.h"
#include "StyleBuilder.h"
#include "StyleFontSizeFunctions.h"
#include "StyleProperties.h"
#include "StylePropertyShorthand.h"
#include "StyleResolveForDocument.h"
#include "StyleRule.h"
#include "StyleSheetContents.h"
#include "UserAgentStyle.h"
#include "VisitedLinkState.h"
#include "WebAnimationTypes.h"
#include "WebKitFontFamilyNames.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/Seconds.h>
#include <wtf/StdLibExtras.h>
#include <wtf/Vector.h>
#include <wtf/text/AtomStringHash.h>
namespace WebCore {
namespace Style {
using namespace HTMLNames;
WTF_MAKE_ISO_ALLOCATED_IMPL(Resolver);
class Resolver::State {
public:
State() { }
State(const Element& element, const RenderStyle* parentStyle, const RenderStyle* documentElementStyle = nullptr)
: m_element(&element)
, m_parentStyle(parentStyle)
{
bool resetStyleInheritance = hasShadowRootParent(element) && downcast<ShadowRoot>(element.parentNode())->resetStyleInheritance();
if (resetStyleInheritance)
m_parentStyle = nullptr;
auto& document = element.document();
auto* documentElement = document.documentElement();
if (!documentElement || documentElement == &element)
m_rootElementStyle = document.initialContainingBlockStyle();
else
m_rootElementStyle = documentElementStyle ? documentElementStyle : documentElement->renderStyle();
}
const Element* element() const { return m_element; }
void setStyle(std::unique_ptr<RenderStyle> style) { m_style = WTFMove(style); }
RenderStyle* style() const { return m_style.get(); }
std::unique_ptr<RenderStyle> takeStyle() { return WTFMove(m_style); }
void setParentStyle(std::unique_ptr<RenderStyle> parentStyle)
{
m_ownedParentStyle = WTFMove(parentStyle);
m_parentStyle = m_ownedParentStyle.get();
}
const RenderStyle* parentStyle() const { return m_parentStyle; }
const RenderStyle* rootElementStyle() const { return m_rootElementStyle; }
const RenderStyle* userAgentAppearanceStyle() const { return m_userAgentAppearanceStyle.get(); }
void setUserAgentAppearanceStyle(std::unique_ptr<RenderStyle> style) { m_userAgentAppearanceStyle = WTFMove(style); }
private:
const Element* m_element { nullptr };
std::unique_ptr<RenderStyle> m_style;
const RenderStyle* m_parentStyle { nullptr };
std::unique_ptr<const RenderStyle> m_ownedParentStyle;
const RenderStyle* m_rootElementStyle { nullptr };
std::unique_ptr<RenderStyle> m_userAgentAppearanceStyle;
};
Ref<Resolver> Resolver::create(Document& document, ScopeType scopeType)
{
return adoptRef(*new Resolver(document, scopeType));
}
Resolver::Resolver(Document& document, ScopeType scopeType)
: m_document(document)
, m_scopeType(scopeType)
, m_ruleSets(*this)
, m_matchedDeclarationsCache(*this)
, m_matchAuthorAndUserStyles(settings().authorAndUserStylesEnabled())
{
initialize();
}
void Resolver::initialize()
{
UserAgentStyle::initDefaultStyleSheet();
// construct document root element default style. this is needed
// to evaluate media queries that contain relative constraints, like "screen and (max-width: 10em)"
// This is here instead of constructor, because when constructor is run,
// document doesn't have documentElement
// NOTE: this assumes that element that gets passed to styleForElement -call
// is always from the document that owns the style selector
auto* view = document().view();
if (view)
m_mediaQueryEvaluator = MQ::MediaQueryEvaluator { view->mediaType() };
else
m_mediaQueryEvaluator = MQ::MediaQueryEvaluator { };
if (auto* documentElement = document().documentElement()) {
m_rootDefaultStyle = styleForElement(*documentElement, { document().initialContainingBlockStyle() }, RuleMatchingBehavior::MatchOnlyUserAgentRules).style;
// Turn off assertion against font lookups during style resolver initialization. We may need root style font for media queries.
document().fontSelector().incrementIsComputingRootStyleFont();
m_rootDefaultStyle->fontCascade().update(&document().fontSelector());
m_rootDefaultStyle->fontCascade().primaryFont();
document().fontSelector().decrementIsComputingRootStyleFont();
}
if (m_rootDefaultStyle && view)
m_mediaQueryEvaluator = MQ::MediaQueryEvaluator { view->mediaType(), document(), m_rootDefaultStyle.get() };
m_ruleSets.resetAuthorStyle();
m_ruleSets.resetUserAgentMediaQueryStyle();
}
Resolver::~Resolver() = default;
Document& Resolver::document()
{
return *m_document;
}
const Document& Resolver::document() const
{
return *m_document;
}
const Settings& Resolver::settings() const
{
return document().settings();
}
void Resolver::addCurrentSVGFontFaceRules()
{
if (document().svgExtensions()) {
auto& svgFontFaceElements = document().svgExtensions()->svgFontFaceElements();
for (auto& svgFontFaceElement : svgFontFaceElements)
document().fontSelector().addFontFaceRule(svgFontFaceElement.fontFaceRule(), svgFontFaceElement.isInUserAgentShadowTree());
}
}
void Resolver::appendAuthorStyleSheets(const Vector<RefPtr<CSSStyleSheet>>& styleSheets)
{
m_ruleSets.appendAuthorStyleSheets(styleSheets, &m_mediaQueryEvaluator, m_inspectorCSSOMWrappers);
if (auto renderView = document().renderView())
renderView->style().fontCascade().update(&document().fontSelector());
}
// This is a simplified style setting function for keyframe styles
void Resolver::addKeyframeStyle(Ref<StyleRuleKeyframes>&& rule)
{
auto& animationName = rule->name();
m_keyframesRuleMap.set(animationName, WTFMove(rule));
document().keyframesRuleDidChange(animationName);
}
static inline bool isAtShadowBoundary(const Element& element)
{
return is<ShadowRoot>(element.parentNode());
}
BuilderContext Resolver::builderContext(const State& state)
{
return {
document(),
*state.parentStyle(),
state.rootElementStyle(),
state.element()
};
}
ResolvedStyle Resolver::styleForElement(const Element& element, const ResolutionContext& context, RuleMatchingBehavior matchingBehavior)
{
auto state = State(element, context.parentStyle, context.documentElementStyle);
if (state.parentStyle()) {
state.setStyle(RenderStyle::createPtrWithRegisteredInitialValues(document().customPropertyRegistry()));
if (&element == document().documentElement() && !context.isSVGUseTreeRoot) {
// Initial values for custom properties are inserted to the document element style. Don't overwrite them.
state.style()->inheritIgnoringCustomPropertiesFrom(*state.parentStyle());
} else
state.style()->inheritFrom(*state.parentStyle());
} else {
state.setStyle(defaultStyleForElement(&element));
state.setParentStyle(RenderStyle::clonePtr(*state.style()));
}
auto& style = *state.style();
if (element.isLink()) {
style.setIsLink(true);
InsideLink linkState = document().visitedLinkState().determineLinkState(element);
if (linkState != InsideLink::NotInside) {
bool forceVisited = InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClassType::Visited);
if (forceVisited)
linkState = InsideLink::InsideVisited;
}
style.setInsideLink(linkState);
}
UserAgentStyle::ensureDefaultStyleSheetsForElement(element);
ElementRuleCollector collector(element, m_ruleSets, context.selectorMatchingState);
collector.setMedium(m_mediaQueryEvaluator);
if (matchingBehavior == RuleMatchingBehavior::MatchOnlyUserAgentRules)
collector.matchUARules();
else
collector.matchAllRules(m_matchAuthorAndUserStyles, matchingBehavior != RuleMatchingBehavior::MatchAllRulesExcludingSMIL);
if (collector.matchedPseudoElementIds())
style.setHasPseudoStyles(collector.matchedPseudoElementIds());
// This is required for style sharing.
if (collector.didMatchUncommonAttributeSelector())
style.setUnique();
auto elementStyleRelations = commitRelationsToRenderStyle(style, element, collector.styleRelations());
applyMatchedProperties(state, collector.matchResult());
Adjuster adjuster(document(), *state.parentStyle(), context.parentBoxStyle, &element);
adjuster.adjust(*state.style(), state.userAgentAppearanceStyle());
if (state.style()->usesViewportUnits())
document().setHasStyleWithViewportUnits();
return { state.takeStyle(), WTFMove(elementStyleRelations), collector.releaseMatchResult() };
}
std::unique_ptr<RenderStyle> Resolver::styleForKeyframe(const Element& element, const RenderStyle& elementStyle, const ResolutionContext& context, const StyleRuleKeyframe& keyframe, KeyframeValue& keyframeValue)
{
// Add all the animating properties to the keyframe.
bool hasRevert = false;
for (auto propertyReference : keyframe.properties()) {
auto unresolvedProperty = propertyReference.id();
// The animation-composition and animation-timing-function within keyframes are special
// because they are not animated; they just describe the composite operation and timing
// function between this keyframe and the next.
if (CSSProperty::isDirectionAwareProperty(unresolvedProperty))
keyframeValue.setContainsDirectionAwareProperty(true);
if (auto* value = propertyReference.value()) {
auto resolvedProperty = CSSProperty::resolveDirectionAwareProperty(unresolvedProperty, elementStyle.direction(), elementStyle.writingMode());
if (resolvedProperty != CSSPropertyAnimationTimingFunction && resolvedProperty != CSSPropertyAnimationComposition) {
if (value->isCustomPropertyValue())
keyframeValue.addProperty(downcast<CSSCustomPropertyValue>(*value).name());
else
keyframeValue.addProperty(resolvedProperty);
}
if (isValueID(*value, CSSValueRevert))
hasRevert = true;
}
}
auto state = State(element, nullptr, context.documentElementStyle);
state.setStyle(RenderStyle::clonePtr(elementStyle));
state.setParentStyle(RenderStyle::clonePtr(context.parentStyle ? *context.parentStyle : elementStyle));
ElementRuleCollector collector(element, m_ruleSets, context.selectorMatchingState);
collector.setPseudoElementRequest({ elementStyle.styleType() });
if (hasRevert) {
// In the animation origin, 'revert' rolls back the cascaded value to the user level.
// Therefore, we need to collect UA and user rules.
collector.setMedium(m_mediaQueryEvaluator);
collector.matchUARules();
collector.matchUserRules();
}
collector.addAuthorKeyframeRules(keyframe);
Builder builder(*state.style(), builderContext(state), collector.matchResult(), CascadeLevel::Author);
builder.state().setIsBuildingKeyframeStyle();
builder.applyAllProperties();
Adjuster adjuster(document(), *state.parentStyle(), nullptr, nullptr);
adjuster.adjust(*state.style(), state.userAgentAppearanceStyle());
return state.takeStyle();
}
bool Resolver::isAnimationNameValid(const String& name)
{
return m_keyframesRuleMap.find(AtomString(name)) != m_keyframesRuleMap.end();
}
Vector<Ref<StyleRuleKeyframe>> Resolver::keyframeRulesForName(const AtomString& animationName) const
{
if (animationName.isEmpty())
return { };
m_keyframesRuleMap.checkConsistency();
auto it = m_keyframesRuleMap.find(animationName);
if (it == m_keyframesRuleMap.end())
return { };
auto compositeOperationForKeyframe = [](Ref<StyleRuleKeyframe> keyframe) -> CompositeOperation {
if (auto compositeOperationCSSValue = keyframe->properties().getPropertyCSSValue(CSSPropertyAnimationComposition)) {
if (auto compositeOperation = toCompositeOperation(*compositeOperationCSSValue))
return *compositeOperation;
}
return Animation::initialCompositeOperation();
};
auto timingFunctionForKeyframe = [](Ref<StyleRuleKeyframe> keyframe) -> RefPtr<const TimingFunction> {
if (auto timingFunctionCSSValue = keyframe->properties().getPropertyCSSValue(CSSPropertyAnimationTimingFunction)) {
if (auto timingFunction = TimingFunction::createFromCSSValue(*timingFunctionCSSValue))
return timingFunction;
}
return &CubicBezierTimingFunction::defaultTimingFunction();
};
HashSet<RefPtr<const TimingFunction>> timingFunctions;
auto uniqueTimingFunctionForKeyframe = [&](Ref<StyleRuleKeyframe> keyframe) -> RefPtr<const TimingFunction> {
auto timingFunction = timingFunctionForKeyframe(keyframe);
for (auto existingTimingFunction : timingFunctions) {
if (arePointingToEqualData(timingFunction, existingTimingFunction))
return existingTimingFunction;
}
timingFunctions.add(timingFunction);
return timingFunction;
};
auto* keyframesRule = it->value.get();
auto* keyframes = &keyframesRule->keyframes();
using KeyframeUniqueKey = std::tuple<double, RefPtr<const TimingFunction>, CompositeOperation>;
auto hasDuplicateKeys = [&]() -> bool {
HashSet<KeyframeUniqueKey> uniqueKeyframeKeys;
for (auto& keyframe : *keyframes) {
auto compositeOperation = compositeOperationForKeyframe(keyframe);
auto timingFunction = uniqueTimingFunctionForKeyframe(keyframe);
for (auto key : keyframe->keys()) {
if (!uniqueKeyframeKeys.add({ key, timingFunction, compositeOperation }))
return true;
}
}
return false;
}();
if (!hasDuplicateKeys)
return *keyframes;
// FIXME: If HashMaps could have Ref<> as value types, we wouldn't need
// to copy the HashMap into a Vector.
// Merge keyframes with a similar offset and timing function.
Vector<Ref<StyleRuleKeyframe>> deduplicatedKeyframes;
HashMap<KeyframeUniqueKey, RefPtr<StyleRuleKeyframe>> keyframesMap;
for (auto& originalKeyframe : *keyframes) {
auto compositeOperation = compositeOperationForKeyframe(originalKeyframe);
auto timingFunction = uniqueTimingFunctionForKeyframe(originalKeyframe);
for (auto key : originalKeyframe->keys()) {
KeyframeUniqueKey uniqueKey { key, timingFunction, compositeOperation };
if (auto keyframe = keyframesMap.get(uniqueKey))
keyframe->mutableProperties().mergeAndOverrideOnConflict(originalKeyframe->properties());
else {
auto styleRuleKeyframe = StyleRuleKeyframe::create(MutableStyleProperties::create());
styleRuleKeyframe.ptr()->setKey(key);
styleRuleKeyframe.ptr()->mutableProperties().mergeAndOverrideOnConflict(originalKeyframe->properties());
keyframesMap.set(uniqueKey, styleRuleKeyframe.ptr());
deduplicatedKeyframes.append(styleRuleKeyframe);
}
}
}
return deduplicatedKeyframes;
}
void Resolver::keyframeStylesForAnimation(const Element& element, const RenderStyle& elementStyle, const ResolutionContext& context, KeyframeList& list)
{
list.clear();
auto keyframeRules = keyframeRulesForName(list.animationName());
if (keyframeRules.isEmpty())
return;
// Construct and populate the style for each keyframe.
for (auto& keyframeRule : keyframeRules) {
// Add this keyframe style to all the indicated key times
for (auto key : keyframeRule->keys()) {
KeyframeValue keyframeValue(0, nullptr);
keyframeValue.setStyle(styleForKeyframe(element, elementStyle, context, keyframeRule.get(), keyframeValue));
keyframeValue.setKey(key);
if (auto timingFunctionCSSValue = keyframeRule->properties().getPropertyCSSValue(CSSPropertyAnimationTimingFunction))
keyframeValue.setTimingFunction(TimingFunction::createFromCSSValue(*timingFunctionCSSValue.get()));
if (auto compositeOperationCSSValue = keyframeRule->properties().getPropertyCSSValue(CSSPropertyAnimationComposition)) {
if (auto compositeOperation = toCompositeOperation(*compositeOperationCSSValue))
keyframeValue.setCompositeOperation(*compositeOperation);
}
list.insert(WTFMove(keyframeValue));
list.updatePropertiesMetadata(keyframeRule->properties());
}
}
}
std::optional<ResolvedStyle> Resolver::styleForPseudoElement(const Element& element, const PseudoElementRequest& pseudoElementRequest, const ResolutionContext& context)
{
auto state = State(element, context.parentStyle, context.documentElementStyle);
if (state.parentStyle()) {
state.setStyle(RenderStyle::createPtrWithRegisteredInitialValues(document().customPropertyRegistry()));
state.style()->inheritFrom(*state.parentStyle());
} else {
state.setStyle(defaultStyleForElement(&element));
state.setParentStyle(RenderStyle::clonePtr(*state.style()));
}
ElementRuleCollector collector(element, m_ruleSets, context.selectorMatchingState);
collector.setPseudoElementRequest(pseudoElementRequest);
collector.setMedium(m_mediaQueryEvaluator);
collector.matchUARules();
if (m_matchAuthorAndUserStyles) {
collector.matchUserRules();
collector.matchAuthorRules();
}
ASSERT(!collector.matchedPseudoElementIds());
if (collector.matchResult().isEmpty())
return { };
state.style()->setStyleType(pseudoElementRequest.pseudoId);
applyMatchedProperties(state, collector.matchResult());
Adjuster adjuster(document(), *state.parentStyle(), context.parentBoxStyle, nullptr);
adjuster.adjust(*state.style(), state.userAgentAppearanceStyle());
if (state.style()->usesViewportUnits())
document().setHasStyleWithViewportUnits();
return ResolvedStyle { state.takeStyle(), nullptr, collector.releaseMatchResult() };
}
std::unique_ptr<RenderStyle> Resolver::styleForPage(int pageIndex)
{
auto* documentElement = document().documentElement();
if (!documentElement || !documentElement->renderStyle())
return RenderStyle::createPtr();
auto state = State(*documentElement, document().initialContainingBlockStyle());
state.setStyle(RenderStyle::createPtr());
state.style()->inheritFrom(*state.rootElementStyle());
PageRuleCollector collector(m_ruleSets, documentElement->renderStyle()->direction());
collector.matchAllPageRules(pageIndex);
auto& result = collector.matchResult();
Builder builder(*state.style(), builderContext(state), result, CascadeLevel::Author);
builder.applyAllProperties();
// Now return the style.
return state.takeStyle();
}
std::unique_ptr<RenderStyle> Resolver::defaultStyleForElement(const Element* element)
{
auto style = RenderStyle::createPtrWithRegisteredInitialValues(document().customPropertyRegistry());
FontCascadeDescription fontDescription;
fontDescription.setOneFamily(standardFamily);
fontDescription.setKeywordSizeFromIdentifier(CSSValueMedium);
auto size = fontSizeForKeyword(CSSValueMedium, false, document());
fontDescription.setSpecifiedSize(size);
fontDescription.setComputedSize(computedFontSizeFromSpecifiedSize(size, fontDescription.isAbsoluteSize(), is<SVGElement>(element), style.get(), document()));
fontDescription.setShouldAllowUserInstalledFonts(settings().shouldAllowUserInstalledFonts() ? AllowUserInstalledFonts::Yes : AllowUserInstalledFonts::No);
style->setFontDescription(WTFMove(fontDescription));
style->fontCascade().update(&document().fontSelector());
return style;
}
Vector<RefPtr<const StyleRule>> Resolver::styleRulesForElement(const Element* element, unsigned rulesToInclude)
{
return pseudoStyleRulesForElement(element, PseudoId::None, rulesToInclude);
}
Vector<RefPtr<const StyleRule>> Resolver::pseudoStyleRulesForElement(const Element* element, PseudoId pseudoId, unsigned rulesToInclude)
{
if (!element)
return { };
auto state = State(*element, nullptr);
ElementRuleCollector collector(*element, m_ruleSets, nullptr);
collector.setMode(SelectorChecker::Mode::CollectingRules);
collector.setPseudoElementRequest({ pseudoId });
collector.setMedium(m_mediaQueryEvaluator);
collector.setIncludeEmptyRules(rulesToInclude & EmptyCSSRules);
if (rulesToInclude & UAAndUserCSSRules) {
// First we match rules from the user agent sheet.
collector.matchUARules();
// Now we check user sheet rules.
if (m_matchAuthorAndUserStyles)
collector.matchUserRules();
}
if (m_matchAuthorAndUserStyles && (rulesToInclude & AuthorCSSRules))
collector.matchAuthorRules();
return collector.matchedRuleList();
}
static bool elementTypeHasAppearanceFromUAStyle(const Element& element)
{
// NOTE: This is just a hard-coded list of elements that have some -webkit-appearance value in html.css
const auto& localName = element.localName();
return localName == HTMLNames::inputTag
|| localName == HTMLNames::textareaTag
|| localName == HTMLNames::buttonTag
|| localName == HTMLNames::progressTag
|| localName == HTMLNames::selectTag
|| localName == HTMLNames::meterTag
|| (element.isInUserAgentShadowTree() && element.shadowPseudoId() == ShadowPseudoIds::webkitListButton());
}
void Resolver::invalidateMatchedDeclarationsCache()
{
m_matchedDeclarationsCache.invalidate();
}
void Resolver::clearCachedDeclarationsAffectedByViewportUnits()
{
m_matchedDeclarationsCache.clearEntriesAffectedByViewportUnits();
}
void Resolver::applyMatchedProperties(State& state, const MatchResult& matchResult)
{
unsigned cacheHash = MatchedDeclarationsCache::computeHash(matchResult);
auto includedProperties = PropertyCascade::allProperties();
auto& style = *state.style();
auto& parentStyle = *state.parentStyle();
auto& element = *state.element();
auto* cacheEntry = m_matchedDeclarationsCache.find(cacheHash, matchResult);
if (cacheEntry && MatchedDeclarationsCache::isCacheable(element, style, parentStyle)) {
// We can build up the style by copying non-inherited properties from an earlier style object built using the same exact
// style declarations. We then only need to apply the inherited properties, if any, as their values can depend on the
// element context. This is fast and saves memory by reusing the style data structures.
style.copyNonInheritedFrom(*cacheEntry->renderStyle);
if (parentStyle.inheritedEqual(*cacheEntry->parentRenderStyle) && !isAtShadowBoundary(element)) {
InsideLink linkStatus = state.style()->insideLink();
// If the cache item parent style has identical inherited properties to the current parent style then the
// resulting style will be identical too. We copy the inherited properties over from the cache and are done.
style.inheritFrom(*cacheEntry->renderStyle);
// Unfortunately the link status is treated like an inherited property. We need to explicitly restore it.
style.setInsideLink(linkStatus);
if (cacheEntry->userAgentAppearanceStyle && elementTypeHasAppearanceFromUAStyle(element))
state.setUserAgentAppearanceStyle(RenderStyle::clonePtr(*cacheEntry->userAgentAppearanceStyle));
return;
}
includedProperties = { PropertyCascade::PropertyType::Inherited };
if (!parentStyle.inheritedCustomPropertiesEqual(*cacheEntry->parentRenderStyle))
includedProperties.add(PropertyCascade::PropertyType::VariableReference);
}
if (elementTypeHasAppearanceFromUAStyle(element)) {
// Find out if there's a -webkit-appearance property in effect from the UA sheet.
// If so, we cache the border and background styles so that RenderTheme::adjustStyle()
// can look at them later to figure out if this is a styled form control or not.
auto userAgentStyle = RenderStyle::clonePtr(style);
Builder builder(*userAgentStyle, builderContext(state), matchResult, CascadeLevel::UserAgent);
builder.applyAllProperties();
state.setUserAgentAppearanceStyle(WTFMove(userAgentStyle));
}
Builder builder(*state.style(), builderContext(state), matchResult, CascadeLevel::Author, includedProperties);
// Top priority properties may affect resolution of high priority ones.
builder.applyTopPriorityProperties();
// High priority properties may affect resolution of other properties (they are mostly font related).
builder.applyHighPriorityProperties();
if (cacheEntry && !cacheEntry->isUsableAfterHighPriorityProperties(style)) {
// High-priority properties may affect resolution of other properties. Kick out the existing cache entry and try again.
m_matchedDeclarationsCache.remove(cacheHash);
applyMatchedProperties(state, matchResult);
return;
}
builder.applyNonHighPriorityProperties();
for (auto& contentAttribute : builder.state().registeredContentAttributes())
ruleSets().mutableFeatures().registerContentAttribute(contentAttribute);
if (cacheEntry || !cacheHash)
return;
if (MatchedDeclarationsCache::isCacheable(element, style, parentStyle))
m_matchedDeclarationsCache.add(style, parentStyle, state.userAgentAppearanceStyle(), cacheHash, matchResult);
}
bool Resolver::hasSelectorForAttribute(const Element& element, const AtomString& attributeName) const
{
ASSERT(!attributeName.isEmpty());
if (element.isHTMLElement() && element.document().isHTMLDocument())
return m_ruleSets.features().attributeLowercaseLocalNamesInRules.contains(attributeName);
return m_ruleSets.features().attributeLocalNamesInRules.contains(attributeName);
}
bool Resolver::hasSelectorForId(const AtomString& idValue) const
{
ASSERT(!idValue.isEmpty());
return m_ruleSets.features().idsInRules.contains(idValue);
}
bool Resolver::hasViewportDependentMediaQueries() const
{
return m_ruleSets.hasViewportDependentMediaQueries();
}
std::optional<DynamicMediaQueryEvaluationChanges> Resolver::evaluateDynamicMediaQueries()
{
return m_ruleSets.evaluateDynamicMediaQueryRules(m_mediaQueryEvaluator);
}
} // namespace Style
} // namespace WebCore
|