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
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
* Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
* Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 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) 2013 Google Inc. All rights reserved.
*
* 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 "StyleScopeRuleSets.h"
#include "CSSStyleSheet.h"
#include "CascadeLevel.h"
#include "ExtensionStyleSheets.h"
#include "FrameLoader.h"
#include "HTMLNames.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "MediaQueryEvaluator.h"
#include "Page.h"
#include "RuleSetBuilder.h"
#include "StyleResolver.h"
#include "StyleScope.h"
#include "StyleSheetContents.h"
namespace WebCore {
namespace Style {
ScopeRuleSets::ScopeRuleSets(Resolver& styleResolver)
: m_authorStyle(RuleSet::create())
, m_styleResolver(styleResolver)
{
}
ScopeRuleSets::~ScopeRuleSets()
{
RELEASE_ASSERT(!m_isInvalidatingStyleWithRuleSets);
}
RuleSet* ScopeRuleSets::userAgentMediaQueryStyle() const
{
updateUserAgentMediaQueryStyleIfNeeded();
return m_userAgentMediaQueryStyle.get();
}
void ScopeRuleSets::updateUserAgentMediaQueryStyleIfNeeded() const
{
if (!UserAgentStyle::mediaQueryStyleSheet)
return;
auto ruleCount = UserAgentStyle::mediaQueryStyleSheet->ruleCount();
if (m_userAgentMediaQueryStyle && ruleCount == m_userAgentMediaQueryRuleCountOnUpdate)
return;
m_userAgentMediaQueryRuleCountOnUpdate = ruleCount;
// Media queries on user agent sheet need to evaluated in document context. They behave like author sheets in this respect.
auto& mediaQueryEvaluator = m_styleResolver.mediaQueryEvaluator();
m_userAgentMediaQueryStyle = RuleSet::create();
RuleSetBuilder builder(*m_userAgentMediaQueryStyle, mediaQueryEvaluator, &m_styleResolver);
builder.addRulesFromSheet(*UserAgentStyle::mediaQueryStyleSheet);
}
RuleSet* ScopeRuleSets::userStyle() const
{
if (m_usesSharedUserStyle)
return m_styleResolver.document().styleScope().resolver().ruleSets().userStyle();
return m_userStyle.get();
}
RuleSet* ScopeRuleSets::styleForCascadeLevel(CascadeLevel level)
{
switch (level) {
case CascadeLevel::Author:
return m_authorStyle.get();
case CascadeLevel::User:
return userStyle();
case CascadeLevel::UserAgent:
return userAgentMediaQueryStyle();
}
ASSERT_NOT_REACHED();
return nullptr;
}
void ScopeRuleSets::initializeUserStyle()
{
auto& extensionStyleSheets = m_styleResolver.document().extensionStyleSheets();
auto& mediaQueryEvaluator = m_styleResolver.mediaQueryEvaluator();
auto userStyle = RuleSet::create();
if (auto* pageUserSheet = extensionStyleSheets.pageUserSheet()) {
RuleSetBuilder builder(userStyle, mediaQueryEvaluator, &m_styleResolver);
builder.addRulesFromSheet(pageUserSheet->contents());
}
#if ENABLE(APP_BOUND_DOMAINS)
auto* page = m_styleResolver.document().page();
auto* localMainFrame = page ? dynamicDowncast<LocalFrame>(page->mainFrame()) : nullptr;
if (!extensionStyleSheets.injectedUserStyleSheets().isEmpty() && page && localMainFrame && localMainFrame->loader().client().shouldEnableInAppBrowserPrivacyProtections())
m_styleResolver.document().addConsoleMessage(MessageSource::Security, MessageLevel::Warning, "Ignoring user style sheet for non-app bound domain."_s);
else {
collectRulesFromUserStyleSheets(extensionStyleSheets.injectedUserStyleSheets(), userStyle, mediaQueryEvaluator);
if (page && localMainFrame && !extensionStyleSheets.injectedUserStyleSheets().isEmpty())
localMainFrame->loader().client().notifyPageOfAppBoundBehavior();
}
#else
collectRulesFromUserStyleSheets(extensionStyleSheets.injectedUserStyleSheets(), userStyle, mediaQueryEvaluator);
#endif
collectRulesFromUserStyleSheets(extensionStyleSheets.documentUserStyleSheets(), userStyle, mediaQueryEvaluator);
if (userStyle->ruleCount() > 0 || userStyle->pageRules().size() > 0)
m_userStyle = WTFMove(userStyle);
}
void ScopeRuleSets::collectRulesFromUserStyleSheets(const Vector<RefPtr<CSSStyleSheet>>& userSheets, RuleSet& userStyle, const MQ::MediaQueryEvaluator& mediaQueryEvaluator)
{
RuleSetBuilder builder(userStyle, mediaQueryEvaluator, &m_styleResolver);
for (auto& sheet : userSheets) {
ASSERT(sheet->contents().isUserStyleSheet());
builder.addRulesFromSheet(sheet->contents());
}
}
template<typename Rules>
RefPtr<RuleSet> makeRuleSet(const Rules& rules)
{
size_t size = rules.size();
if (!size)
return nullptr;
auto ruleSet = RuleSet::create();
for (size_t i = 0; i < size; ++i)
ruleSet->addRule(*rules[i].styleRule, rules[i].selectorIndex, rules[i].selectorListIndex);
ruleSet->shrinkToFit();
return ruleSet;
}
void ScopeRuleSets::resetAuthorStyle()
{
m_isAuthorStyleDefined = true;
m_authorStyle = RuleSet::create();
}
void ScopeRuleSets::resetUserAgentMediaQueryStyle()
{
m_userAgentMediaQueryStyle = nullptr;
}
bool ScopeRuleSets::hasViewportDependentMediaQueries() const
{
if (m_authorStyle->hasViewportDependentMediaQueries())
return true;
if (m_userStyle && m_userStyle->hasViewportDependentMediaQueries())
return true;
if (m_userAgentMediaQueryStyle && m_userAgentMediaQueryStyle->hasViewportDependentMediaQueries())
return true;
return false;
}
bool ScopeRuleSets::hasContainerQueries() const
{
if (m_authorStyle->hasContainerQueries())
return true;
if (m_userStyle && m_userStyle->hasContainerQueries())
return true;
if (m_userAgentMediaQueryStyle && m_userAgentMediaQueryStyle->hasContainerQueries())
return true;
return false;
}
std::optional<DynamicMediaQueryEvaluationChanges> ScopeRuleSets::evaluateDynamicMediaQueryRules(const MQ::MediaQueryEvaluator& evaluator)
{
std::optional<DynamicMediaQueryEvaluationChanges> evaluationChanges;
auto evaluate = [&](auto* ruleSet) {
if (!ruleSet)
return;
if (auto changes = ruleSet->evaluateDynamicMediaQueryRules(evaluator)) {
if (evaluationChanges)
evaluationChanges->append(WTFMove(*changes));
else
evaluationChanges = changes;
}
};
evaluate(&authorStyle());
evaluate(userStyle());
evaluate(userAgentMediaQueryStyle());
return evaluationChanges;
}
void ScopeRuleSets::appendAuthorStyleSheets(const Vector<RefPtr<CSSStyleSheet>>& styleSheets, MQ::MediaQueryEvaluator* mediaQueryEvaluator, InspectorCSSOMWrappers& inspectorCSSOMWrappers)
{
RuleSetBuilder builder(*m_authorStyle, *mediaQueryEvaluator, &m_styleResolver, RuleSetBuilder::ShrinkToFit::Enable, RuleSetBuilder::ShouldResolveNesting::Yes);
for (auto& cssSheet : styleSheets) {
ASSERT(!cssSheet->disabled());
builder.addRulesFromSheet(cssSheet->contents(), cssSheet->mediaQueries());
inspectorCSSOMWrappers.collectFromStyleSheetIfNeeded(cssSheet.get());
}
collectFeatures();
}
void ScopeRuleSets::collectFeatures() const
{
RELEASE_ASSERT(!m_isInvalidatingStyleWithRuleSets);
m_features.clear();
// Collect all ids and rules using sibling selectors (:first-child and similar)
// in the current set of stylesheets. Style sharing code uses this information to reject
// sharing candidates.
if (UserAgentStyle::defaultStyle)
m_features.add(UserAgentStyle::defaultStyle->features());
m_defaultStyleVersionOnFeatureCollection = UserAgentStyle::defaultStyleVersion;
if (auto* userAgentMediaQueryStyle = this->userAgentMediaQueryStyle())
m_features.add(userAgentMediaQueryStyle->features());
if (m_authorStyle)
m_features.add(m_authorStyle->features());
if (auto* userStyle = this->userStyle())
m_features.add(userStyle->features());
m_siblingRuleSet = makeRuleSet(m_features.siblingRules);
m_uncommonAttributeRuleSet = makeRuleSet(m_features.uncommonAttributeRules);
m_idInvalidationRuleSets.clear();
m_classInvalidationRuleSets.clear();
m_attributeInvalidationRuleSets.clear();
m_pseudoClassInvalidationRuleSets.clear();
m_hasPseudoClassInvalidationRuleSets.clear();
m_cachedHasComplexSelectorsForStyleAttribute = std::nullopt;
m_features.shrinkToFit();
}
template<typename KeyType, typename RuleFeatureVectorType, typename Hash, typename HashTraits>
static Vector<InvalidationRuleSet>* ensureInvalidationRuleSets(const KeyType& key, HashMap<KeyType, std::unique_ptr<Vector<InvalidationRuleSet>>, Hash, HashTraits>& ruleSetMap, const HashMap<KeyType, std::unique_ptr<RuleFeatureVectorType>, Hash, HashTraits>& ruleFeatures)
{
return ruleSetMap.ensure(key, [&] () -> std::unique_ptr<Vector<InvalidationRuleSet>> {
auto* features = ruleFeatures.get(key);
if (!features)
return nullptr;
HashMap<std::tuple<uint8_t, bool, bool>, InvalidationRuleSet> invalidationRuleSetMap;
for (auto& feature : *features) {
auto key = std::tuple { static_cast<uint8_t>(feature.matchElement), static_cast<bool>(feature.isNegation), true };
auto& invalidationRuleSet = invalidationRuleSetMap.ensure(key, [&] {
return InvalidationRuleSet {
RuleSet::create(),
{ },
feature.matchElement,
feature.isNegation,
};
}).iterator->value;
invalidationRuleSet.ruleSet->addRule(*feature.styleRule, feature.selectorIndex, feature.selectorListIndex);
if constexpr (std::is_same<typename RuleFeatureVectorType::ValueType, RuleFeatureWithInvalidationSelector>::value) {
if (feature.invalidationSelector)
invalidationRuleSet.invalidationSelectors.append(feature.invalidationSelector);
}
}
auto invalidationRuleSets = makeUnique<Vector<InvalidationRuleSet>>();
invalidationRuleSets->reserveInitialCapacity(invalidationRuleSetMap.size());
for (auto& invalidationRuleSet : invalidationRuleSetMap.values()) {
invalidationRuleSet.ruleSet->shrinkToFit();
invalidationRuleSets->uncheckedAppend(WTFMove(invalidationRuleSet));
}
return invalidationRuleSets;
}).iterator->value.get();
}
const Vector<InvalidationRuleSet>* ScopeRuleSets::idInvalidationRuleSets(const AtomString& id) const
{
return ensureInvalidationRuleSets(id, m_idInvalidationRuleSets, m_features.idRules);
}
const Vector<InvalidationRuleSet>* ScopeRuleSets::classInvalidationRuleSets(const AtomString& className) const
{
return ensureInvalidationRuleSets(className, m_classInvalidationRuleSets, m_features.classRules);
}
const Vector<InvalidationRuleSet>* ScopeRuleSets::attributeInvalidationRuleSets(const AtomString& attributeName) const
{
return ensureInvalidationRuleSets(attributeName, m_attributeInvalidationRuleSets, m_features.attributeRules);
}
const Vector<InvalidationRuleSet>* ScopeRuleSets::pseudoClassInvalidationRuleSets(const PseudoClassInvalidationKey& pseudoClassKey) const
{
return ensureInvalidationRuleSets(pseudoClassKey, m_pseudoClassInvalidationRuleSets, m_features.pseudoClassRules);
}
const Vector<InvalidationRuleSet>* ScopeRuleSets::hasPseudoClassInvalidationRuleSets(const PseudoClassInvalidationKey& key) const
{
return ensureInvalidationRuleSets(key, m_hasPseudoClassInvalidationRuleSets, m_features.hasPseudoClassRules);
}
bool ScopeRuleSets::hasComplexSelectorsForStyleAttribute() const
{
auto compute = [&] {
auto* ruleSets = attributeInvalidationRuleSets(HTMLNames::styleAttr->localName());
if (!ruleSets)
return false;
for (auto& ruleSet : *ruleSets) {
if (ruleSet.matchElement != MatchElement::Subject)
return true;
}
return false;
};
if (!m_cachedHasComplexSelectorsForStyleAttribute)
m_cachedHasComplexSelectorsForStyleAttribute = compute();
return *m_cachedHasComplexSelectorsForStyleAttribute;
}
bool ScopeRuleSets::hasMatchingUserOrAuthorStyle(const Function<bool(RuleSet&)>& predicate)
{
if (m_authorStyle && predicate(*m_authorStyle))
return true;
if (auto* userStyle = this->userStyle(); userStyle && predicate(*userStyle))
return true;
return false;
}
} // namespace Style
} // namespace WebCore
|