This will make being more granular with cloning easier, and we don't need it after the previous patch. This leaves DeclarationBlock only for the style attribute for now, we need it for the AttrStyles stuff. But I plan to move that to MiscContainer instead or so. Differential Revision: https://phabricator.services.mozilla.com/D300052
192 lines
6.1 KiB
C++
192 lines
6.1 KiB
C++
/* 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/CSSPageRule.h"
|
|
|
|
#include "mozilla/ServoBindings.h"
|
|
#include "mozilla/dom/CSSPageDescriptorsBinding.h"
|
|
#include "mozilla/dom/CSSPageRuleBinding.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
// -- CSSPageRuleDeclaration ---------------------------------------
|
|
|
|
CSSPageRuleDeclaration::CSSPageRuleDeclaration(already_AddRefed<Block> aDecls)
|
|
: mDecls(aDecls) {}
|
|
|
|
CSSPageRuleDeclaration::~CSSPageRuleDeclaration() = default;
|
|
|
|
// QueryInterface implementation for CSSPageRuleDeclaration
|
|
NS_INTERFACE_MAP_BEGIN(CSSPageRuleDeclaration)
|
|
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(CSSPageRuleDeclaration, Rule())
|
|
NS_IMPL_RELEASE_USING_AGGREGATOR(CSSPageRuleDeclaration, Rule())
|
|
|
|
/* nsDOMCSSDeclaration implementation */
|
|
|
|
css::Rule* CSSPageRuleDeclaration::GetParentRule() { return Rule(); }
|
|
|
|
nsINode* CSSPageRuleDeclaration::GetAssociatedNode() const {
|
|
return Rule()->GetAssociatedDocumentOrShadowRoot();
|
|
}
|
|
|
|
nsISupports* CSSPageRuleDeclaration::GetParentObject() const {
|
|
return Rule()->GetParentObject();
|
|
}
|
|
|
|
JSObject* CSSPageRuleDeclaration::WrapObject(
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
|
return CSSPageDescriptors_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
StyleLockedDeclarationBlock* CSSPageRuleDeclaration::GetOrCreateCSSDeclaration(
|
|
Operation aOperation, Block** aCreated) {
|
|
if (aOperation != Operation::Read) {
|
|
if (StyleSheet* sheet = Rule()->GetStyleSheet()) {
|
|
sheet->WillDirty();
|
|
}
|
|
}
|
|
return mDecls;
|
|
}
|
|
|
|
void CSSPageRuleDeclaration::SetRawAfterClone(RefPtr<Block> aBlock) {
|
|
mDecls = aBlock.forget();
|
|
}
|
|
|
|
nsresult CSSPageRuleDeclaration::SetCSSDeclaration(
|
|
Block* aDecl, MutationClosureData* aClosureData) {
|
|
MOZ_ASSERT(aDecl, "must be non-null");
|
|
CSSPageRule* rule = Rule();
|
|
|
|
if (aDecl != mDecls) {
|
|
Servo_PageRule_SetStyle(rule->Raw(), aDecl);
|
|
mDecls = aDecl;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsDOMCSSDeclaration::ParsingEnvironment
|
|
CSSPageRuleDeclaration::GetParsingEnvironment(
|
|
nsIPrincipal* aSubjectPrincipal) const {
|
|
return GetParsingEnvironmentForRule(Rule(), StyleCssRuleType::Page);
|
|
}
|
|
|
|
// -- CSSPageRule --------------------------------------------------
|
|
|
|
CSSPageRule::CSSPageRule(RefPtr<StyleLockedPageRule> aRawRule,
|
|
StyleSheet* aSheet, css::Rule* aParentRule,
|
|
uint32_t aLine, uint32_t aColumn)
|
|
: css::GroupRule(aSheet, aParentRule, aLine, aColumn),
|
|
mRawRule(std::move(aRawRule)),
|
|
mDecls(Servo_PageRule_GetStyle(mRawRule).Consume()) {}
|
|
|
|
NS_IMPL_ADDREF_INHERITED(CSSPageRule, css::GroupRule)
|
|
NS_IMPL_RELEASE_INHERITED(CSSPageRule, css::GroupRule)
|
|
|
|
// QueryInterface implementation for PageRule
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(CSSPageRule)
|
|
NS_INTERFACE_MAP_END_INHERITING(css::GroupRule)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CSSPageRule)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(CSSPageRule, css::GroupRule)
|
|
// Keep this in sync with IsCCLeaf.
|
|
|
|
// 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(CSSPageRule)
|
|
// Keep this in sync with IsCCLeaf.
|
|
|
|
// 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_END_INHERITED(css::GroupRule)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CSSPageRule, css::GroupRule)
|
|
// Keep this in sync with IsCCLeaf.
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
bool CSSPageRule::IsCCLeaf() const {
|
|
if (!GroupRule::IsCCLeaf()) {
|
|
return false;
|
|
}
|
|
|
|
return !mDecls.PreservingWrapper();
|
|
}
|
|
|
|
void CSSPageRule::SetRawAfterClone(RefPtr<StyleLockedPageRule> aRaw) {
|
|
mRawRule = std::move(aRaw);
|
|
mDecls.SetRawAfterClone(Servo_PageRule_GetStyle(mRawRule.get()).Consume());
|
|
}
|
|
|
|
StyleCssRuleType CSSPageRule::Type() const { return StyleCssRuleType::Page; }
|
|
|
|
size_t CSSPageRule::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const {
|
|
// TODO Implement this!
|
|
return GroupRule::SizeOfExcludingThis(aMallocSizeOf) + aMallocSizeOf(this);
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
void CSSPageRule::List(FILE* out, int32_t aIndent) const {
|
|
nsAutoCString str;
|
|
for (int32_t i = 0; i < aIndent; i++) {
|
|
str.AppendLiteral(" ");
|
|
}
|
|
Servo_PageRule_Debug(mRawRule, &str);
|
|
fprintf_stderr(out, "%s\n", str.get());
|
|
}
|
|
#endif
|
|
|
|
/* CSSRule implementation */
|
|
|
|
void CSSPageRule::GetCssText(nsACString& aCssText) const {
|
|
Servo_PageRule_GetCssText(mRawRule, &aCssText);
|
|
}
|
|
|
|
/* CSSPageRule implementation */
|
|
|
|
void CSSPageRule::GetSelectorText(nsACString& aSelectorText) const {
|
|
Servo_PageRule_GetSelectorText(mRawRule.get(), &aSelectorText);
|
|
}
|
|
|
|
void CSSPageRule::SetSelectorText(const nsACString& aSelectorText) {
|
|
if (IsReadOnly()) {
|
|
return;
|
|
}
|
|
|
|
if (StyleSheet* const sheet = GetStyleSheet()) {
|
|
sheet->WillDirty();
|
|
const StyleStylesheetContents* const contents = sheet->RawContents();
|
|
if (Servo_PageRule_SetSelectorText(contents, mRawRule.get(),
|
|
&aSelectorText)) {
|
|
sheet->RuleChanged(this, StyleRuleChangeKind::Generic);
|
|
}
|
|
}
|
|
}
|
|
|
|
already_AddRefed<StyleLockedCssRules> CSSPageRule::GetOrCreateRawRules() {
|
|
return Servo_PageRule_GetRules(mRawRule).Consume();
|
|
}
|
|
|
|
JSObject* CSSPageRule::WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) {
|
|
return CSSPageRule_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
} // namespace mozilla::dom
|