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
208 lines
5.7 KiB
C++
208 lines
5.7 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/CSSKeyframeRule.h"
|
|
|
|
#include "mozilla/ServoBindings.h"
|
|
#include "mozilla/dom/CSSKeyframeRuleBinding.h"
|
|
#include "nsDOMCSSDeclaration.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
// -------------------------------------------
|
|
// CSSKeyframeDeclaration
|
|
//
|
|
|
|
class CSSKeyframeDeclaration final : public nsDOMCSSDeclaration {
|
|
public:
|
|
explicit CSSKeyframeDeclaration(CSSKeyframeRule* aRule)
|
|
: mRule(aRule), mDecls(Servo_Keyframe_GetStyle(aRule->Raw()).Consume()) {}
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS_AMBIGUOUS(CSSKeyframeDeclaration,
|
|
nsICSSDeclaration)
|
|
|
|
css::Rule* GetParentRule() final { return mRule; }
|
|
|
|
void DropReference() { mRule = nullptr; }
|
|
|
|
Block* GetOrCreateCSSDeclaration(Operation aOperation,
|
|
Block** aCreated) final {
|
|
if (aOperation != Operation::Read && mRule) {
|
|
if (StyleSheet* sheet = mRule->GetStyleSheet()) {
|
|
sheet->WillDirty();
|
|
}
|
|
}
|
|
return mDecls;
|
|
}
|
|
nsresult SetCSSDeclaration(Block* aDecls,
|
|
MutationClosureData* aClosureData) final {
|
|
if (!mRule) {
|
|
return NS_OK;
|
|
}
|
|
mRule->UpdateRule([this, aDecls]() {
|
|
if (mDecls != aDecls) {
|
|
mDecls = aDecls;
|
|
Servo_Keyframe_SetStyle(mRule->Raw(), mDecls);
|
|
}
|
|
});
|
|
return NS_OK;
|
|
}
|
|
ParsingEnvironment GetParsingEnvironment(
|
|
nsIPrincipal* aSubjectPrincipal) const final {
|
|
return GetParsingEnvironmentForRule(mRule, StyleCssRuleType::Keyframe);
|
|
}
|
|
|
|
nsINode* GetAssociatedNode() const final {
|
|
return mRule ? mRule->GetAssociatedDocumentOrShadowRoot() : nullptr;
|
|
}
|
|
|
|
nsISupports* GetParentObject() const final {
|
|
return mRule ? mRule->GetParentObject() : nullptr;
|
|
}
|
|
|
|
size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const {
|
|
size_t n = aMallocSizeOf(this);
|
|
// TODO we may want to add size of mDecls as well
|
|
return n;
|
|
}
|
|
|
|
void SetRawAfterClone(StyleLockedKeyframe* aKeyframe) {
|
|
mDecls = Servo_Keyframe_GetStyle(aKeyframe).Consume();
|
|
}
|
|
|
|
private:
|
|
virtual ~CSSKeyframeDeclaration() {
|
|
MOZ_ASSERT(!mRule, "Backpointer should have been cleared");
|
|
}
|
|
|
|
CSSKeyframeRule* mRule;
|
|
RefPtr<Block> mDecls;
|
|
};
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(CSSKeyframeDeclaration)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(CSSKeyframeDeclaration)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(CSSKeyframeDeclaration)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(CSSKeyframeDeclaration)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDOMCSSDeclaration)
|
|
|
|
// -------------------------------------------
|
|
// CSSKeyframeRule
|
|
//
|
|
|
|
CSSKeyframeRule::CSSKeyframeRule(already_AddRefed<StyleLockedKeyframe> aRaw,
|
|
StyleSheet* aSheet, css::Rule* aParentRule,
|
|
uint32_t aLine, uint32_t aColumn)
|
|
: css::Rule(aSheet, aParentRule, aLine, aColumn), mRaw(aRaw) {}
|
|
|
|
CSSKeyframeRule::~CSSKeyframeRule() {
|
|
if (mDeclaration) {
|
|
mDeclaration->DropReference();
|
|
}
|
|
}
|
|
|
|
NS_IMPL_ADDREF_INHERITED(CSSKeyframeRule, css::Rule)
|
|
NS_IMPL_RELEASE_INHERITED(CSSKeyframeRule, css::Rule)
|
|
|
|
// QueryInterface implementation for nsCSSKeyframeRule
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(CSSKeyframeRule)
|
|
NS_INTERFACE_MAP_END_INHERITING(css::Rule)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CSSKeyframeRule)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(CSSKeyframeRule, css::Rule)
|
|
if (tmp->mDeclaration) {
|
|
tmp->mDeclaration->DropReference();
|
|
tmp->mDeclaration = nullptr;
|
|
}
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CSSKeyframeRule, css::Rule)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDeclaration)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
bool CSSKeyframeRule::IsCCLeaf() const {
|
|
return Rule::IsCCLeaf() && !mDeclaration;
|
|
}
|
|
|
|
StyleCssRuleType CSSKeyframeRule::Type() const {
|
|
return StyleCssRuleType::Keyframe;
|
|
}
|
|
|
|
void CSSKeyframeRule::SetRawAfterClone(RefPtr<StyleLockedKeyframe> aRaw) {
|
|
mRaw = std::move(aRaw);
|
|
|
|
if (mDeclaration) {
|
|
mDeclaration->SetRawAfterClone(mRaw);
|
|
}
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
/* virtual */
|
|
void CSSKeyframeRule::List(FILE* out, int32_t aIndent) const {
|
|
nsAutoCString str;
|
|
for (int32_t i = 0; i < aIndent; i++) {
|
|
str.AppendLiteral(" ");
|
|
}
|
|
Servo_Keyframe_Debug(mRaw, &str);
|
|
fprintf_stderr(out, "%s\n", str.get());
|
|
}
|
|
#endif
|
|
|
|
template <typename Func>
|
|
void CSSKeyframeRule::UpdateRule(Func aCallback) {
|
|
if (IsReadOnly()) {
|
|
return;
|
|
}
|
|
|
|
StyleSheet* sheet = GetStyleSheet();
|
|
if (sheet) {
|
|
sheet->WillDirty();
|
|
}
|
|
|
|
aCallback();
|
|
|
|
if (sheet) {
|
|
sheet->RuleChanged(this, StyleRuleChangeKind::Generic);
|
|
}
|
|
}
|
|
|
|
void CSSKeyframeRule::GetKeyText(nsACString& aKeyText) {
|
|
Servo_Keyframe_GetKeyText(mRaw, &aKeyText);
|
|
}
|
|
|
|
void CSSKeyframeRule::SetKeyText(const nsACString& aKeyText) {
|
|
UpdateRule(
|
|
[this, &aKeyText]() { Servo_Keyframe_SetKeyText(mRaw, &aKeyText); });
|
|
}
|
|
|
|
void CSSKeyframeRule::GetCssText(nsACString& aCssText) const {
|
|
Servo_Keyframe_GetCssText(mRaw, &aCssText);
|
|
}
|
|
|
|
nsDOMCSSDeclaration* CSSKeyframeRule::Style() {
|
|
if (!mDeclaration) {
|
|
mDeclaration = new CSSKeyframeDeclaration(this);
|
|
}
|
|
return mDeclaration;
|
|
}
|
|
|
|
size_t CSSKeyframeRule::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const {
|
|
size_t n = aMallocSizeOf(this);
|
|
if (mDeclaration) {
|
|
n += mDeclaration->SizeOfIncludingThis(aMallocSizeOf);
|
|
}
|
|
return n;
|
|
}
|
|
|
|
/* virtual */
|
|
JSObject* CSSKeyframeRule::WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) {
|
|
return CSSKeyframeRule_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
} // namespace mozilla::dom
|