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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/dom/CSSStyleRule.h"
#include "mozilla/CSSEnabledState.h"
#include "mozilla/DeclarationBlock.h"
#include "mozilla/PseudoStyleType.h"
#include "mozilla/ServoBindings.h"
#include "mozilla/dom/CSSScopeRule.h"
#include "mozilla/dom/CSSStyleRuleBinding.h"
#include "mozilla/dom/ShadowRoot.h"
#include "mozilla/dom/StylePropertyMap.h"
#include "nsCSSPseudoElements.h"
#include "nsISupports.h"
namespace mozilla::dom {
// -- CSSStyleRuleDeclaration ---------------------------------------
CSSStyleRuleDeclaration::CSSStyleRuleDeclaration(
already_AddRefed<StyleLockedDeclarationBlock> aDecls)
: mDecls(new DeclarationBlock(std::move(aDecls))) {
mDecls->SetOwningRule(Rule());
}
CSSStyleRuleDeclaration::~CSSStyleRuleDeclaration() {
mDecls->SetOwningRule(nullptr);
}
// QueryInterface implementation for CSSStyleRuleDeclaration
NS_INTERFACE_MAP_BEGIN(CSSStyleRuleDeclaration)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
// We forward the cycle collection interfaces to Rule(), which is
// never null (in fact, we're part of that object!)
if (aIID.Equals(NS_GET_IID(nsCycleCollectionISupports)) ||
aIID.Equals(NS_GET_IID(nsXPCOMCycleCollectionParticipant))) {
return Rule()->QueryInterface(aIID, aInstancePtr);
}
NS_INTERFACE_MAP_END_INHERITING(nsDOMCSSDeclaration)
NS_IMPL_ADDREF_USING_AGGREGATOR(CSSStyleRuleDeclaration, Rule())
NS_IMPL_RELEASE_USING_AGGREGATOR(CSSStyleRuleDeclaration, Rule())
/* nsDOMCSSDeclaration implementation */
css::Rule* CSSStyleRuleDeclaration::GetParentRule() { return Rule(); }
nsINode* CSSStyleRuleDeclaration::GetAssociatedNode() const {
return Rule()->GetAssociatedDocumentOrShadowRoot();
}
nsISupports* CSSStyleRuleDeclaration::GetParentObject() const {
return Rule()->GetParentObject();
}
DeclarationBlock* CSSStyleRuleDeclaration::GetOrCreateCSSDeclaration(
Operation aOperation, DeclarationBlock** aCreated) {
if (aOperation != Operation::Read) {
if (StyleSheet* sheet = Rule()->GetStyleSheet()) {
sheet->WillDirty();
}
}
return mDecls;
}
void CSSStyleRuleDeclaration::SetRawAfterClone(
RefPtr<StyleLockedDeclarationBlock> aRaw) {
auto block = MakeRefPtr<DeclarationBlock>(aRaw.forget());
mDecls->SetOwningRule(nullptr);
mDecls = std::move(block);
mDecls->SetOwningRule(Rule());
}
void CSSStyleRule::SetRawAfterClone(RefPtr<StyleLockedStyleRule> aRaw) {
mRawRule = std::move(aRaw);
mDecls.SetRawAfterClone(Servo_StyleRule_GetStyle(mRawRule).Consume());
GroupRule::DidSetRawAfterClone();
}
already_AddRefed<StyleLockedCssRules> CSSStyleRule::GetOrCreateRawRules() {
return Servo_StyleRule_EnsureRules(mRawRule, IsReadOnly()).Consume();
}
nsresult CSSStyleRuleDeclaration::SetCSSDeclaration(
DeclarationBlock* aDecl, MutationClosureData* aClosureData) {
CSSStyleRule* rule = Rule();
RefPtr<DeclarationBlock> oldDecls;
if (StyleSheet* sheet = rule->GetStyleSheet()) {
if (aDecl != mDecls) {
oldDecls = std::move(mDecls);
oldDecls->SetOwningRule(nullptr);
Servo_StyleRule_SetStyle(rule->Raw(), aDecl->Raw());
mDecls = aDecl;
mDecls->SetOwningRule(rule);
}
sheet->RuleChanged(rule, {StyleRuleChangeKind::StyleRuleDeclarations,
oldDecls ? oldDecls.get() : aDecl, aDecl});
}
return NS_OK;
}
nsDOMCSSDeclaration::ParsingEnvironment
CSSStyleRuleDeclaration::GetParsingEnvironment(nsIPrincipal*) const {
return GetParsingEnvironmentForRule(Rule(), StyleCssRuleType::Style);
}
// -- CSSStyleRule --------------------------------------------------
CSSStyleRule::CSSStyleRule(already_AddRefed<StyleLockedStyleRule> aRawRule,
StyleSheet* aSheet, css::Rule* aParentRule,
uint32_t aLine, uint32_t aColumn)
: GroupRule(aSheet, aParentRule, aLine, aColumn),
mRawRule(aRawRule),
mDecls(Servo_StyleRule_GetStyle(mRawRule).Consume()) {}
NS_IMPL_ISUPPORTS_CYCLE_COLLECTION_INHERITED_0(CSSStyleRule, GroupRule)
NS_IMPL_CYCLE_COLLECTION_CLASS(CSSStyleRule)
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(CSSStyleRule, GroupRule)
// Keep this in sync with IsCCLeaf.
// XXX The comment below seems to be incorrect/confusing, the TraceWrapper
// call is needed because CSSStyleRuleDeclaration doesn't support cycle
// collection?
// This appears to have been done for performance reasons, but it's unclear
// whether it's still a good idea.
// Trace the wrapper for our declaration. This just expands out
// NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER which we can't use
// directly because the wrapper is on the declaration, not on us.
tmp->mDecls.TraceWrapper(aCallbacks, aClosure);
NS_IMPL_CYCLE_COLLECTION_TRACE_END
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(CSSStyleRule)
// Keep this in sync with IsCCLeaf.
NS_IMPL_CYCLE_COLLECTION_UNLINK(mStyleMap)
// Unlink the wrapper for our declaration.
//
// Note that this has to happen before unlinking css::Rule.
tmp->UnlinkDeclarationWrapper(tmp->mDecls);
NS_IMPL_CYCLE_COLLECTION_UNLINK_WEAK_PTR
NS_IMPL_CYCLE_COLLECTION_UNLINK_END_INHERITED(GroupRule)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CSSStyleRule, GroupRule)
// Keep this in sync with IsCCLeaf.
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mStyleMap)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
bool CSSStyleRule::IsCCLeaf() const {
if (!GroupRule::IsCCLeaf()) {
return false;
}
if (mStyleMap) {
return false;
}
return !mDecls.PreservingWrapper();
}
size_t CSSStyleRule::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const {
size_t n = aMallocSizeOf(this);
// Measurement of the following members may be added later if DMD finds it
// is worthwhile:
// - mRawRule
// - mStyleMap
// - mDecls
return n;
}
#ifdef DEBUG
void CSSStyleRule::List(FILE* out, int32_t aIndent) const {
nsAutoCString str;
for (int32_t i = 0; i < aIndent; i++) {
str.AppendLiteral(" ");
}
Servo_StyleRule_Debug(mRawRule, &str);
fprintf_stderr(out, "%s\n", str.get());
}
#endif
/* CSSRule implementation */
StyleCssRuleType CSSStyleRule::Type() const { return StyleCssRuleType::Style; }
void CSSStyleRule::GetCssText(nsACString& aCssText) const {
Servo_StyleRule_GetCssText(mRawRule, &aCssText);
}
/* CSSStyleRule implementation */
const StyleLockedDeclarationBlock* CSSStyleRule::RawStyle() const {
return mDecls.mDecls->Raw();
}
void CSSStyleRule::GetSelectorText(nsACString& aSelectorText) {
Servo_StyleRule_GetSelectorText(mRawRule, &aSelectorText);
}
void CSSStyleRule::SetSelectorText(const nsACString& aSelectorText) {
if (IsReadOnly()) {
return;
}
StyleSheet* sheet = GetStyleSheet();
if (!sheet) {
return;
}
sheet->WillDirty();
auto state = ContainingRuleState::From(mParentRule);
// TODO(emilio): May actually be more efficient to handle this as rule
// removal + addition, from the point of view of invalidation...
const StyleStylesheetContents* contents = sheet->RawContents();
if (Servo_StyleRule_SetSelectorText(
contents, mRawRule, &aSelectorText,
state.mParseRelativeType.ptrOr(nullptr))) {
sheet->RuleChanged(this, StyleRuleChangeKind::Generic);
}
}
uint32_t CSSStyleRule::SelectorCount() const {
return Servo_StyleRule_GetSelectorCount(mRawRule);
}
static void CollectStyleRules(CSSStyleRule& aDeepestRule, bool aDesugared,
nsTArray<const StyleLockedStyleRule*>& aResult,
nsTArray<StyleScopeRuleData>* aScopes = nullptr) {
aResult.AppendElement(aDeepestRule.Raw());
if (aDesugared) {
for (auto* rule = aDeepestRule.GetParentRule(); rule;
rule = rule->GetParentRule()) {
if (rule->Type() == StyleCssRuleType::Style) {
aResult.AppendElement(static_cast<CSSStyleRule*>(rule)->Raw());
} else if (aScopes && rule->Type() == StyleCssRuleType::Scope) {
MOZ_ASSERT(aResult.Length() > 0, "Innermost rule wasn't a style rule?");
aScopes->AppendElement(StyleScopeRuleData{
static_cast<CSSScopeRule*>(rule)->Raw(),
rule->GetStyleSheet(),
aResult.Length() - 1,
});
}
}
}
}
void CSSStyleRule::GetSelectorDataAtIndex(uint32_t aSelectorIndex,
bool aDesugared, nsACString* aText,
uint64_t* aSpecificity) {
AutoTArray<const StyleLockedStyleRule*, 8> rules;
CollectStyleRules(*this, aDesugared, rules);
Servo_StyleRule_GetSelectorDataAtIndex(&rules, aSelectorIndex, aText,
aSpecificity);
}
void CSSStyleRule::SelectorTextAt(uint32_t aSelectorIndex, bool aDesugared,
nsACString& aText) {
GetSelectorDataAtIndex(aSelectorIndex, aDesugared, &aText, nullptr);
}
uint64_t CSSStyleRule::SelectorSpecificityAt(uint32_t aSelectorIndex,
bool aDesugared) {
uint64_t s = 0;
GetSelectorDataAtIndex(aSelectorIndex, aDesugared, nullptr, &s);
return s;
}
static Maybe<PseudoStyleType> GetPseudoType(const nsAString& aPseudo) {
return nsCSSPseudoElements::ParsePseudoElement(
aPseudo, CSSEnabledState::IgnoreEnabledState)
.map([](const PseudoStyleRequest& aRequest) { return aRequest.mType; });
}
Element* GetHost(StyleSheet* aSheet, const Element& aElement) {
if (!aSheet) {
return nullptr;
}
if (auto* owner = aSheet->GetAssociatedDocumentOrShadowRoot()) {
if (auto* shadow = ShadowRoot::FromNode(owner->AsNode())) {
return shadow->Host();
}
}
for (auto* adopter : aSheet->SelfOrAncestorAdopters()) {
// Try to guess. This is not fully correct but it's the best we can do
// with the info at hand...
auto* shadow = ShadowRoot::FromNode(adopter->AsNode());
if (!shadow) {
continue;
}
if (shadow->Host() == &aElement ||
shadow == aElement.GetContainingShadow()) {
return shadow->Host();
}
}
return nullptr;
}
bool CSSStyleRule::SelectorMatchesElement(uint32_t aSelectorIndex,
Element& aElement,
const nsAString& aPseudo,
bool aRelevantLinkVisited) {
const auto pseudo = GetPseudoType(aPseudo);
if (!pseudo) {
return false;
}
auto* host = GetHost(GetStyleSheet(), aElement);
AutoTArray<const StyleLockedStyleRule*, 8> rules;
AutoTArray<StyleScopeRuleData, 1> scopes;
CollectStyleRules(*this, /* aDesugared = */ true, rules, &scopes);
// FIXME: Bug 1909173. This function is used for the devtool, so we may need
// to revist here once we finish the support of view-transitions.
return Servo_StyleRule_SelectorMatchesElement(&rules, &scopes, &aElement,
aSelectorIndex, host, *pseudo,
aRelevantLinkVisited);
}
Element* CSSStyleRule::GetScopeRootFor(uint32_t aSelectorIndex,
dom::Element& aElement,
const nsAString& aPseudo,
bool aRelevantLinkVisited) {
const auto pseudo = GetPseudoType(aPseudo);
if (!pseudo) {
return nullptr;
}
auto* host = GetHost(GetStyleSheet(), aElement);
AutoTArray<const StyleLockedStyleRule*, 8> rules;
AutoTArray<StyleScopeRuleData, 1> scopes;
CollectStyleRules(*this, /* aDesugared = */ true, rules, &scopes);
return const_cast<Element*>(Servo_StyleRule_GetScopeRootFor(
&rules, &scopes, &aElement, aSelectorIndex, host, *pseudo,
aRelevantLinkVisited));
}
SelectorWarningKind ToWebIDLSelectorWarningKind(
StyleSelectorWarningKind aKind) {
switch (aKind) {
case StyleSelectorWarningKind::UnconstraintedRelativeSelector:
return SelectorWarningKind::UnconstrainedHas;
}
MOZ_ASSERT_UNREACHABLE("Unhandled selector warning kind");
// Return something for assert-disabled builds.
return SelectorWarningKind::UnconstrainedHas;
}
void CSSStyleRule::GetSelectorWarnings(
nsTArray<SelectorWarning>& aResult) const {
nsTArray<StyleSelectorWarningData> result;
Servo_GetSelectorWarnings(mRawRule, &result);
for (const auto& warning : result) {
auto& entry = *aResult.AppendElement();
entry.mIndex = warning.index;
entry.mKind = ToWebIDLSelectorWarningKind(warning.kind);
}
}
already_AddRefed<nsINodeList> CSSStyleRule::QuerySelectorAll(nsINode& aRoot) {
AutoTArray<const StyleLockedStyleRule*, 8> rules;
AutoTArray<StyleScopeRuleData, 1> scopes;
CollectStyleRules(*this, /* aDesugared = */ true, rules, &scopes);
auto contentList = MakeRefPtr<nsSimpleContentList>(&aRoot);
if (scopes.IsEmpty()) {
StyleSelectorList* list = Servo_StyleRule_GetSelectorList(&rules);
Servo_SelectorList_QueryAll(&aRoot, list, contentList.get(),
/* useInvalidation */ false);
Servo_SelectorList_Drop(list);
} else {
// TODO(dshin): This division is annoying, but `querySelectorAll` path has
// fast-path options that we can take advantage of.
Servo_SelectorList_QueryAllWithScope(&aRoot, &rules, &scopes,
contentList.get());
}
return contentList.forget();
}
StylePropertyMap* CSSStyleRule::StyleMap() {
if (!mStyleMap) {
mStyleMap = MakeRefPtr<StylePropertyMap>(this);
}
return mStyleMap;
}
/* virtual */
JSObject* CSSStyleRule::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
return CSSStyleRule_Binding::Wrap(aCx, this, aGivenProto);
}
} // namespace mozilla::dom
|