gecko-dev/layout/style/CSSStyleRule.h

123 строки
3.7 KiB
C
Исходник Обычный вид История

/* -*- 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/. */
#ifndef mozilla_CSSStyleRule_h
#define mozilla_CSSStyleRule_h
#include "mozilla/BindingStyleRule.h"
#include "mozilla/ServoBindingTypes.h"
#include "mozilla/WeakPtr.h"
#include "nsDOMCSSDeclaration.h"
namespace mozilla {
class DeclarationBlock;
namespace dom {
class DocGroup;
class CSSStyleRule;
class CSSStyleRuleDeclaration final : public nsDOMCSSDeclaration
{
public:
NS_DECL_ISUPPORTS_INHERITED
css::Rule* GetParentRule() final;
nsINode* GetParentObject() final;
protected:
Bug 1428246 - The attributeChangedCallback is fired twice for the *first* style attribute change, r=peterv The idea with this patch is that style code will first call InlineStyleDeclarationWillChange before style declaration has changed, and SetInlineStyleDeclaration once it has changed. In order to be able to report old attribute value, InlineStyleDeclarationWillChange reads the value and also calls AttributeWillChange (so that DOMMutationObserser can grab the old value). Later SetInlineStyleDeclaration passes the old value to SetAttrAndNotify so that mutation events and attributeChanged callbacks are handled correctly. Because of performance, declaration can't be cloned for reading the old value. And that is why the recently-added callback is used to detect when declaration is about to change (bug 1466963 and followup bug 1468665). To keep the expected existing behavior, even if declaration isn't changed, but just a new declaration was created (since there wasn't any), we need to still run all these willchange/set calls. That is when the code has 'if (created)' checks. Since there are several declaration implementation and only nsDOMCSSAttributeDeclaration needs the about-to-change callback, GetPropertyChangeClosure is the one to initialize the callback closure, and the struct which is then passes as data to the closure. Apparently we lost mutation event testing on style attribute when the pref was added, so test_style_attr_listener.html is modified to test both pref values. --HG-- extra : rebase_source : 9e605d43f22e650ac3912fbfb41abb8d5a2a0c8f
2018-06-26 12:54:00 +03:00
mozilla::DeclarationBlock* GetOrCreateCSSDeclaration(
Operation aOperation, mozilla::DeclarationBlock** aCreated) final;
nsresult SetCSSDeclaration(DeclarationBlock* aDecl,
MutationClosureData* aClosureData) final;
nsIDocument* DocToUpdate() final;
ParsingEnvironment
GetParsingEnvironment(nsIPrincipal* aSubjectPrincipal) const final;
private:
// For accessing the constructor.
friend class CSSStyleRule;
explicit CSSStyleRuleDeclaration(
already_AddRefed<RawServoDeclarationBlock> aDecls);
~CSSStyleRuleDeclaration();
inline CSSStyleRule* Rule();
inline const CSSStyleRule* Rule() const;
RefPtr<DeclarationBlock> mDecls;
};
class CSSStyleRule final : public BindingStyleRule
, public SupportsWeakPtr<CSSStyleRule>
{
public:
CSSStyleRule(already_AddRefed<RawServoStyleRule> aRawRule,
uint32_t aLine, uint32_t aColumn);
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(CSSStyleRule,
css::Rule)
bool IsCCLeaf() const final MOZ_MUST_OVERRIDE;
MOZ_DECLARE_WEAKREFERENCE_TYPENAME(CSSStyleRule)
uint32_t GetSelectorCount() override;
nsresult GetSelectorText(uint32_t aSelectorIndex,
nsAString& aText) override;
nsresult GetSpecificity(uint32_t aSelectorIndex,
uint64_t* aSpecificity) override;
nsresult SelectorMatchesElement(dom::Element* aElement,
uint32_t aSelectorIndex,
const nsAString& aPseudo,
bool* aMatches) override;
NotNull<DeclarationBlock*> GetDeclarationBlock() const override;
// WebIDL interface
uint16_t Type() const final { return dom::CSSRule_Binding::STYLE_RULE; }
void GetCssText(nsAString& aCssText) const final;
void GetSelectorText(nsAString& aSelectorText) final;
void SetSelectorText(const nsAString& aSelectorText) final;
nsICSSDeclaration* Style() final;
RawServoStyleRule* Raw() const { return mRawRule; }
// Methods of mozilla::css::Rule
size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const final;
#ifdef DEBUG
void List(FILE* out = stdout, int32_t aIndent = 0) const final;
#endif
private:
~CSSStyleRule() {}
// For computing the offset of mDecls.
friend class CSSStyleRuleDeclaration;
RefPtr<RawServoStyleRule> mRawRule;
CSSStyleRuleDeclaration mDecls;
};
CSSStyleRule*
CSSStyleRuleDeclaration::Rule()
{
return reinterpret_cast<CSSStyleRule*>(
reinterpret_cast<uint8_t*>(this) - offsetof(CSSStyleRule, mDecls));
}
const CSSStyleRule*
CSSStyleRuleDeclaration::Rule() const
{
return reinterpret_cast<const CSSStyleRule*>(
reinterpret_cast<const uint8_t*>(this) - offsetof(CSSStyleRule, mDecls));
}
} // namespace dom
} // namespace mozilla
#endif // mozilla_CSSStyleRule_h