зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 2c2afe732553 (bug 851892)
This commit is contained in:
Родитель
7f2820fd7b
Коммит
1c3bfd1016
|
@ -20,6 +20,7 @@
|
||||||
#include "nsIAtom.h"
|
#include "nsIAtom.h"
|
||||||
#include "nsString.h"
|
#include "nsString.h"
|
||||||
#include "nsStyleUtil.h"
|
#include "nsStyleUtil.h"
|
||||||
|
#include "nsICSSStyleRuleDOMWrapper.h"
|
||||||
#include "nsDOMCSSDeclaration.h"
|
#include "nsDOMCSSDeclaration.h"
|
||||||
#include "nsNameSpaceManager.h"
|
#include "nsNameSpaceManager.h"
|
||||||
#include "nsXMLNameSpaceMap.h"
|
#include "nsXMLNameSpaceMap.h"
|
||||||
|
@ -1046,26 +1047,30 @@ nsCSSSelectorList::SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) cons
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
|
namespace mozilla {
|
||||||
|
namespace css {
|
||||||
|
class DOMCSSStyleRule;
|
||||||
|
} // namespace css
|
||||||
|
} // namespace mozilla
|
||||||
|
|
||||||
class DOMCSSDeclarationImpl : public nsDOMCSSDeclaration
|
class DOMCSSDeclarationImpl : public nsDOMCSSDeclaration
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
// Needs to be protected so we can use NS_IMPL_ADDREF_USING_AGGREGATOR.
|
|
||||||
virtual ~DOMCSSDeclarationImpl(void);
|
virtual ~DOMCSSDeclarationImpl(void);
|
||||||
|
|
||||||
// But we need to allow UniquePtr to delete us.
|
|
||||||
friend class mozilla::DefaultDelete<DOMCSSDeclarationImpl>;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit DOMCSSDeclarationImpl(css::StyleRule *aRule);
|
explicit DOMCSSDeclarationImpl(css::StyleRule *aRule);
|
||||||
|
|
||||||
NS_IMETHOD GetParentRule(nsIDOMCSSRule **aParent) override;
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule **aParent) override;
|
||||||
|
void DropReference(void);
|
||||||
virtual DeclarationBlock* GetCSSDeclaration(Operation aOperation) override;
|
virtual DeclarationBlock* GetCSSDeclaration(Operation aOperation) override;
|
||||||
virtual nsresult SetCSSDeclaration(DeclarationBlock* aDecl) override;
|
virtual nsresult SetCSSDeclaration(DeclarationBlock* aDecl) override;
|
||||||
virtual void GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv) override;
|
virtual void GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv) override;
|
||||||
virtual nsIDocument* DocToUpdate() override;
|
virtual nsIDocument* DocToUpdate() override;
|
||||||
|
|
||||||
// Override |AddRef| and |Release| for being owned by StyleRule. Also, we
|
// Override |AddRef| and |Release| for being a member of
|
||||||
// need to forward QI for cycle collection things to StyleRule.
|
// |DOMCSSStyleRule|. Also, we need to forward QI for cycle
|
||||||
|
// collection things to DOMCSSStyleRule.
|
||||||
NS_DECL_ISUPPORTS_INHERITED
|
NS_DECL_ISUPPORTS_INHERITED
|
||||||
|
|
||||||
virtual nsINode *GetParentObject() override
|
virtual nsINode *GetParentObject() override
|
||||||
|
@ -1073,12 +1078,55 @@ public:
|
||||||
return mRule ? mRule->GetDocument() : nullptr;
|
return mRule ? mRule->GetDocument() : nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
friend class css::DOMCSSStyleRule;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// This reference is not reference-counted. The rule object owns us and we go
|
// This reference is not reference-counted. The rule object tells us
|
||||||
// away when it does.
|
// when it's about to go away.
|
||||||
css::StyleRule *mRule;
|
css::StyleRule *mRule;
|
||||||
|
|
||||||
|
inline css::DOMCSSStyleRule* DomRule();
|
||||||
|
|
||||||
|
private:
|
||||||
|
// NOT TO BE IMPLEMENTED
|
||||||
|
// This object cannot be allocated on its own. It must be a member of
|
||||||
|
// DOMCSSStyleRule.
|
||||||
|
void* operator new(size_t size) CPP_THROW_NEW;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
namespace mozilla {
|
||||||
|
namespace css {
|
||||||
|
|
||||||
|
class DOMCSSStyleRule : public nsICSSStyleRuleDOMWrapper
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit DOMCSSStyleRule(StyleRule *aRule);
|
||||||
|
|
||||||
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
||||||
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMCSSStyleRule)
|
||||||
|
NS_DECL_NSIDOMCSSRULE
|
||||||
|
NS_DECL_NSIDOMCSSSTYLERULE
|
||||||
|
|
||||||
|
// nsICSSStyleRuleDOMWrapper
|
||||||
|
NS_IMETHOD GetCSSStyleRule(StyleRule **aResult) override;
|
||||||
|
|
||||||
|
DOMCSSDeclarationImpl* DOMDeclaration() { return &mDOMDeclaration; }
|
||||||
|
|
||||||
|
friend class ::DOMCSSDeclarationImpl;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual ~DOMCSSStyleRule();
|
||||||
|
|
||||||
|
DOMCSSDeclarationImpl mDOMDeclaration;
|
||||||
|
|
||||||
|
StyleRule* Rule() {
|
||||||
|
return mDOMDeclaration.mRule;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace css
|
||||||
|
} // namespace mozilla
|
||||||
|
|
||||||
DOMCSSDeclarationImpl::DOMCSSDeclarationImpl(css::StyleRule *aRule)
|
DOMCSSDeclarationImpl::DOMCSSDeclarationImpl(css::StyleRule *aRule)
|
||||||
: mRule(aRule)
|
: mRule(aRule)
|
||||||
{
|
{
|
||||||
|
@ -1086,25 +1134,40 @@ DOMCSSDeclarationImpl::DOMCSSDeclarationImpl(css::StyleRule *aRule)
|
||||||
|
|
||||||
DOMCSSDeclarationImpl::~DOMCSSDeclarationImpl(void)
|
DOMCSSDeclarationImpl::~DOMCSSDeclarationImpl(void)
|
||||||
{
|
{
|
||||||
|
NS_ASSERTION(!mRule, "DropReference not called.");
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMPL_ADDREF_USING_AGGREGATOR(DOMCSSDeclarationImpl, mRule)
|
inline css::DOMCSSStyleRule* DOMCSSDeclarationImpl::DomRule()
|
||||||
NS_IMPL_RELEASE_USING_AGGREGATOR(DOMCSSDeclarationImpl, mRule)
|
{
|
||||||
|
return reinterpret_cast<css::DOMCSSStyleRule*>
|
||||||
|
(reinterpret_cast<char*>(this) -
|
||||||
|
offsetof(css::DOMCSSStyleRule, mDOMDeclaration));
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMPL_ADDREF_USING_AGGREGATOR(DOMCSSDeclarationImpl, DomRule())
|
||||||
|
NS_IMPL_RELEASE_USING_AGGREGATOR(DOMCSSDeclarationImpl, DomRule())
|
||||||
|
|
||||||
NS_INTERFACE_MAP_BEGIN(DOMCSSDeclarationImpl)
|
NS_INTERFACE_MAP_BEGIN(DOMCSSDeclarationImpl)
|
||||||
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
||||||
// We forward the cycle collection interfaces to mRule, which is
|
// We forward the cycle collection interfaces to DomRule(), which is
|
||||||
// never null.
|
// never null (in fact, we're part of that object!)
|
||||||
if (aIID.Equals(NS_GET_IID(nsCycleCollectionISupports)) ||
|
if (aIID.Equals(NS_GET_IID(nsCycleCollectionISupports)) ||
|
||||||
aIID.Equals(NS_GET_IID(nsXPCOMCycleCollectionParticipant))) {
|
aIID.Equals(NS_GET_IID(nsXPCOMCycleCollectionParticipant))) {
|
||||||
return mRule->QueryInterface(aIID, aInstancePtr);
|
return DomRule()->QueryInterface(aIID, aInstancePtr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
NS_IMPL_QUERY_TAIL_INHERITING(nsDOMCSSDeclaration)
|
NS_IMPL_QUERY_TAIL_INHERITING(nsDOMCSSDeclaration)
|
||||||
|
|
||||||
|
void
|
||||||
|
DOMCSSDeclarationImpl::DropReference(void)
|
||||||
|
{
|
||||||
|
mRule = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
DeclarationBlock*
|
DeclarationBlock*
|
||||||
DOMCSSDeclarationImpl::GetCSSDeclaration(Operation aOperation)
|
DOMCSSDeclarationImpl::GetCSSDeclaration(Operation aOperation)
|
||||||
{
|
{
|
||||||
|
if (mRule) {
|
||||||
if (aOperation != eOperation_Read) {
|
if (aOperation != eOperation_Read) {
|
||||||
RefPtr<CSSStyleSheet> sheet = mRule->GetStyleSheet();
|
RefPtr<CSSStyleSheet> sheet = mRule->GetStyleSheet();
|
||||||
if (sheet) {
|
if (sheet) {
|
||||||
|
@ -1112,6 +1175,9 @@ DOMCSSDeclarationImpl::GetCSSDeclaration(Operation aOperation)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return mRule->GetDeclaration();
|
return mRule->GetDeclaration();
|
||||||
|
} else {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1125,6 +1191,11 @@ DOMCSSDeclarationImpl::GetParentRule(nsIDOMCSSRule **aParent)
|
||||||
{
|
{
|
||||||
NS_ENSURE_ARG_POINTER(aParent);
|
NS_ENSURE_ARG_POINTER(aParent);
|
||||||
|
|
||||||
|
if (!mRule) {
|
||||||
|
*aParent = nullptr;
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
NS_IF_ADDREF(*aParent = mRule->GetDOMRule());
|
NS_IF_ADDREF(*aParent = mRule->GetDOMRule());
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
@ -1161,13 +1232,50 @@ DOMCSSDeclarationImpl::DocToUpdate()
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
// -- StyleRule ------------------------------------
|
|
||||||
|
|
||||||
namespace mozilla {
|
namespace mozilla {
|
||||||
namespace css {
|
namespace css {
|
||||||
|
|
||||||
|
DOMCSSStyleRule::DOMCSSStyleRule(StyleRule* aRule)
|
||||||
|
: mDOMDeclaration(aRule)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
DOMCSSStyleRule::~DOMCSSStyleRule()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DOMCSSStyleRule)
|
||||||
|
NS_INTERFACE_MAP_ENTRY(nsICSSStyleRuleDOMWrapper)
|
||||||
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSStyleRule)
|
||||||
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSRule)
|
||||||
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
||||||
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(CSSStyleRule)
|
||||||
|
NS_INTERFACE_MAP_END
|
||||||
|
|
||||||
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(DOMCSSStyleRule)
|
||||||
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(DOMCSSStyleRule)
|
||||||
|
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_CLASS(DOMCSSStyleRule)
|
||||||
|
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(DOMCSSStyleRule)
|
||||||
|
// 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->DOMDeclaration()->TraceWrapper(aCallbacks, aClosure);
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
||||||
|
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(DOMCSSStyleRule)
|
||||||
|
// Unlink the wrapper for our declaraton. This just expands out
|
||||||
|
// NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER which we can't use
|
||||||
|
// directly because the wrapper is on the declaration, not on us.
|
||||||
|
tmp->DOMDeclaration()->ReleaseWrapper(static_cast<nsISupports*>(p));
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
||||||
|
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(DOMCSSStyleRule)
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
StyleRule::GetType(uint16_t* aType)
|
DOMCSSStyleRule::GetType(uint16_t* aType)
|
||||||
{
|
{
|
||||||
*aType = nsIDOMCSSRule::STYLE_RULE;
|
*aType = nsIDOMCSSRule::STYLE_RULE;
|
||||||
|
|
||||||
|
@ -1175,42 +1283,95 @@ StyleRule::GetType(uint16_t* aType)
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
StyleRule::GetParentStyleSheet(nsIDOMCSSStyleSheet** aSheet)
|
DOMCSSStyleRule::GetCssText(nsAString& aCssText)
|
||||||
{
|
{
|
||||||
return Rule::GetParentStyleSheet(aSheet);
|
if (!Rule()) {
|
||||||
|
aCssText.Truncate();
|
||||||
|
} else {
|
||||||
|
Rule()->GetCssText(aCssText);
|
||||||
|
}
|
||||||
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
StyleRule::GetParentRule(nsIDOMCSSRule** aParentRule)
|
DOMCSSStyleRule::SetCssText(const nsAString& aCssText)
|
||||||
{
|
{
|
||||||
return Rule::GetParentRule(aParentRule);
|
if (Rule()) {
|
||||||
|
Rule()->SetCssText(aCssText);
|
||||||
|
}
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
DOMCSSStyleRule::GetParentStyleSheet(nsIDOMCSSStyleSheet** aSheet)
|
||||||
|
{
|
||||||
|
if (!Rule()) {
|
||||||
|
*aSheet = nullptr;
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
return Rule()->GetParentStyleSheet(aSheet);
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
DOMCSSStyleRule::GetParentRule(nsIDOMCSSRule** aParentRule)
|
||||||
|
{
|
||||||
|
if (!Rule()) {
|
||||||
|
*aParentRule = nullptr;
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
return Rule()->GetParentRule(aParentRule);
|
||||||
}
|
}
|
||||||
|
|
||||||
css::Rule*
|
css::Rule*
|
||||||
StyleRule::GetCSSRule()
|
DOMCSSStyleRule::GetCSSRule()
|
||||||
{
|
{
|
||||||
return this;
|
return Rule();
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
StyleRule::GetStyle(nsIDOMCSSStyleDeclaration** aStyle)
|
DOMCSSStyleRule::GetSelectorText(nsAString& aSelectorText)
|
||||||
{
|
{
|
||||||
if (!mDOMDeclaration) {
|
if (!Rule()) {
|
||||||
mDOMDeclaration.reset(new DOMCSSDeclarationImpl(this));
|
aSelectorText.Truncate();
|
||||||
|
} else {
|
||||||
|
Rule()->GetSelectorText(aSelectorText);
|
||||||
}
|
}
|
||||||
*aStyle = mDOMDeclaration.get();
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
DOMCSSStyleRule::SetSelectorText(const nsAString& aSelectorText)
|
||||||
|
{
|
||||||
|
if (Rule()) {
|
||||||
|
Rule()->SetSelectorText(aSelectorText);
|
||||||
|
}
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
DOMCSSStyleRule::GetStyle(nsIDOMCSSStyleDeclaration** aStyle)
|
||||||
|
{
|
||||||
|
*aStyle = &mDOMDeclaration;
|
||||||
NS_ADDREF(*aStyle);
|
NS_ADDREF(*aStyle);
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
StyleRule::GetCSSStyleRule(StyleRule **aResult)
|
DOMCSSStyleRule::GetCSSStyleRule(StyleRule **aResult)
|
||||||
{
|
{
|
||||||
*aResult = this;
|
*aResult = Rule();
|
||||||
NS_ADDREF(*aResult);
|
NS_IF_ADDREF(*aResult);
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // namespace css
|
||||||
|
} // namespace mozilla
|
||||||
|
|
||||||
|
// -- StyleRule ------------------------------------
|
||||||
|
|
||||||
|
namespace mozilla {
|
||||||
|
namespace css {
|
||||||
|
|
||||||
StyleRule::StyleRule(nsCSSSelectorList* aSelector,
|
StyleRule::StyleRule(nsCSSSelectorList* aSelector,
|
||||||
Declaration* aDeclaration,
|
Declaration* aDeclaration,
|
||||||
uint32_t aLineNumber,
|
uint32_t aLineNumber,
|
||||||
|
@ -1245,6 +1406,11 @@ StyleRule::~StyleRule()
|
||||||
void
|
void
|
||||||
StyleRule::DropReferences()
|
StyleRule::DropReferences()
|
||||||
{
|
{
|
||||||
|
if (mDOMRule) {
|
||||||
|
mDOMRule->DOMDeclaration()->DropReference();
|
||||||
|
mDOMRule = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
if (mDeclaration) {
|
if (mDeclaration) {
|
||||||
mDeclaration->SetOwningRule(nullptr);
|
mDeclaration->SetOwningRule(nullptr);
|
||||||
}
|
}
|
||||||
|
@ -1258,36 +1424,18 @@ NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(StyleRule)
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
NS_INTERFACE_MAP_ENTRY(nsICSSStyleRuleDOMWrapper)
|
|
||||||
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSStyleRule)
|
|
||||||
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSRule)
|
|
||||||
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(CSSStyleRule)
|
|
||||||
NS_INTERFACE_MAP_END_INHERITING(Rule)
|
NS_INTERFACE_MAP_END_INHERITING(Rule)
|
||||||
|
|
||||||
NS_IMPL_ADDREF_INHERITED(StyleRule, Rule)
|
NS_IMPL_ADDREF_INHERITED(StyleRule, Rule)
|
||||||
NS_IMPL_RELEASE_INHERITED(StyleRule, Rule)
|
NS_IMPL_RELEASE_INHERITED(StyleRule, Rule)
|
||||||
|
|
||||||
NS_IMPL_CYCLE_COLLECTION_CLASS(StyleRule)
|
NS_IMPL_CYCLE_COLLECTION_CLASS(StyleRule)
|
||||||
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(StyleRule, Rule)
|
|
||||||
// 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.
|
|
||||||
if (tmp->mDOMDeclaration) {
|
|
||||||
tmp->mDOMDeclaration->TraceWrapper(aCallbacks, aClosure);
|
|
||||||
}
|
|
||||||
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
||||||
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(StyleRule, Rule)
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(StyleRule, Rule)
|
||||||
// Unlink the wrapper for our declaraton. This just expands out
|
|
||||||
// NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER which we can't use
|
|
||||||
// directly because the wrapper is on the declaration, not on us.
|
|
||||||
if (tmp->mDOMDeclaration) {
|
|
||||||
tmp->mDOMDeclaration->ReleaseWrapper(static_cast<nsISupports*>(p));
|
|
||||||
}
|
|
||||||
tmp->DropReferences();
|
tmp->DropReferences();
|
||||||
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
||||||
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(StyleRule, Rule)
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(StyleRule, Rule)
|
||||||
// Keep this in sync with IsCCLeaf.
|
// Keep this in sync with IsCCLeaf.
|
||||||
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDOMRule)
|
||||||
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
@ -1297,7 +1445,7 @@ StyleRule::IsCCLeaf() const
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return !mDOMDeclaration || !mDOMDeclaration->PreservingWrapper();
|
return !mDOMRule || !mDOMRule->DOMDeclaration()->PreservingWrapper();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* virtual */ int32_t
|
/* virtual */ int32_t
|
||||||
|
@ -1316,7 +1464,16 @@ StyleRule::Clone() const
|
||||||
/* virtual */ nsIDOMCSSRule*
|
/* virtual */ nsIDOMCSSRule*
|
||||||
StyleRule::GetDOMRule()
|
StyleRule::GetDOMRule()
|
||||||
{
|
{
|
||||||
return this;
|
if (!mDOMRule) {
|
||||||
|
if (!GetStyleSheet()) {
|
||||||
|
// Inline style rules aren't supposed to have a DOM rule object, only
|
||||||
|
// a declaration. But if we do have one already, from a style sheet
|
||||||
|
// rule that used to be in a document, we still want to return it.
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
mDOMRule = new DOMCSSStyleRule(this);
|
||||||
|
}
|
||||||
|
return mDOMRule;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1373,7 +1530,7 @@ StyleRule::List(FILE* out, int32_t aIndent) const
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
NS_IMETHODIMP
|
void
|
||||||
StyleRule::GetCssText(nsAString& aCssText)
|
StyleRule::GetCssText(nsAString& aCssText)
|
||||||
{
|
{
|
||||||
if (mSelector) {
|
if (mSelector) {
|
||||||
|
@ -1390,33 +1547,29 @@ StyleRule::GetCssText(nsAString& aCssText)
|
||||||
}
|
}
|
||||||
aCssText.Append(char16_t(' '));
|
aCssText.Append(char16_t(' '));
|
||||||
aCssText.Append(char16_t('}'));
|
aCssText.Append(char16_t('}'));
|
||||||
return NS_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
void
|
||||||
StyleRule::SetCssText(const nsAString& aCssText)
|
StyleRule::SetCssText(const nsAString& aCssText)
|
||||||
{
|
{
|
||||||
// XXX TBI - need to re-parse rule & declaration
|
// XXX TBI - need to re-parse rule & declaration
|
||||||
return NS_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
void
|
||||||
StyleRule::GetSelectorText(nsAString& aSelectorText)
|
StyleRule::GetSelectorText(nsAString& aSelectorText)
|
||||||
{
|
{
|
||||||
if (mSelector)
|
if (mSelector)
|
||||||
mSelector->ToString(aSelectorText, GetStyleSheet());
|
mSelector->ToString(aSelectorText, GetStyleSheet());
|
||||||
else
|
else
|
||||||
aSelectorText.Truncate();
|
aSelectorText.Truncate();
|
||||||
return NS_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NS_IMETHODIMP
|
void
|
||||||
StyleRule::SetSelectorText(const nsAString& aSelectorText)
|
StyleRule::SetSelectorText(const nsAString& aSelectorText)
|
||||||
{
|
{
|
||||||
// XXX TBI - get a parser and re-parse the selectors,
|
// XXX TBI - get a parser and re-parse the selectors,
|
||||||
// XXX then need to re-compute the cascade
|
// XXX then need to re-compute the cascade
|
||||||
// XXX and dirty sheet
|
// XXX and dirty sheet
|
||||||
return NS_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* virtual */ size_t
|
/* virtual */ size_t
|
||||||
|
|
|
@ -13,14 +13,12 @@
|
||||||
|
|
||||||
#include "mozilla/Attributes.h"
|
#include "mozilla/Attributes.h"
|
||||||
#include "mozilla/MemoryReporting.h"
|
#include "mozilla/MemoryReporting.h"
|
||||||
#include "mozilla/UniquePtr.h"
|
|
||||||
#include "mozilla/css/Rule.h"
|
#include "mozilla/css/Rule.h"
|
||||||
|
|
||||||
#include "nsString.h"
|
#include "nsString.h"
|
||||||
#include "nsCOMPtr.h"
|
#include "nsCOMPtr.h"
|
||||||
#include "nsCSSPseudoElements.h"
|
#include "nsCSSPseudoElements.h"
|
||||||
#include "nsIStyleRule.h"
|
#include "nsIStyleRule.h"
|
||||||
#include "nsICSSStyleRuleDOMWrapper.h"
|
|
||||||
|
|
||||||
class nsIAtom;
|
class nsIAtom;
|
||||||
struct nsCSSSelectorList;
|
struct nsCSSSelectorList;
|
||||||
|
@ -304,15 +302,13 @@ private:
|
||||||
{ 0x464bab7a, 0x2fce, 0x4f30, \
|
{ 0x464bab7a, 0x2fce, 0x4f30, \
|
||||||
{ 0xab, 0x44, 0xb7, 0xa5, 0xf3, 0xaa, 0xe5, 0x7d } }
|
{ 0xab, 0x44, 0xb7, 0xa5, 0xf3, 0xaa, 0xe5, 0x7d } }
|
||||||
|
|
||||||
class DOMCSSDeclarationImpl;
|
|
||||||
|
|
||||||
namespace mozilla {
|
namespace mozilla {
|
||||||
namespace css {
|
namespace css {
|
||||||
|
|
||||||
class Declaration;
|
class Declaration;
|
||||||
|
class DOMCSSStyleRule;
|
||||||
|
|
||||||
class StyleRule final : public Rule
|
class StyleRule final : public Rule
|
||||||
, public nsICSSStyleRuleDOMWrapper
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
StyleRule(nsCSSSelectorList* aSelector,
|
StyleRule(nsCSSSelectorList* aSelector,
|
||||||
|
@ -325,15 +321,9 @@ public:
|
||||||
NS_DECLARE_STATIC_IID_ACCESSOR(NS_CSS_STYLE_RULE_IMPL_CID)
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_CSS_STYLE_RULE_IMPL_CID)
|
||||||
|
|
||||||
NS_DECL_ISUPPORTS_INHERITED
|
NS_DECL_ISUPPORTS_INHERITED
|
||||||
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(StyleRule, Rule)
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(StyleRule, Rule)
|
||||||
virtual bool IsCCLeaf() const override;
|
virtual bool IsCCLeaf() const override;
|
||||||
|
|
||||||
NS_DECL_NSIDOMCSSRULE
|
|
||||||
NS_DECL_NSIDOMCSSSTYLERULE
|
|
||||||
|
|
||||||
// nsICSSStyleRuleDOMWrapper
|
|
||||||
NS_IMETHOD GetCSSStyleRule(StyleRule **aResult) override;
|
|
||||||
|
|
||||||
// null for style attribute
|
// null for style attribute
|
||||||
nsCSSSelectorList* Selector() { return mSelector; }
|
nsCSSSelectorList* Selector() { return mSelector; }
|
||||||
|
|
||||||
|
@ -341,6 +331,12 @@ public:
|
||||||
|
|
||||||
void SetDeclaration(Declaration* aDecl);
|
void SetDeclaration(Declaration* aDecl);
|
||||||
|
|
||||||
|
// hooks for DOM rule
|
||||||
|
void GetCssText(nsAString& aCssText);
|
||||||
|
void SetCssText(const nsAString& aCssText);
|
||||||
|
void GetSelectorText(nsAString& aSelectorText);
|
||||||
|
void SetSelectorText(const nsAString& aSelectorText);
|
||||||
|
|
||||||
virtual int32_t GetType() const override;
|
virtual int32_t GetType() const override;
|
||||||
|
|
||||||
CSSStyleSheet* GetStyleSheet() const
|
CSSStyleSheet* GetStyleSheet() const
|
||||||
|
@ -372,9 +368,7 @@ private:
|
||||||
private:
|
private:
|
||||||
nsCSSSelectorList* mSelector; // null for style attribute
|
nsCSSSelectorList* mSelector; // null for style attribute
|
||||||
RefPtr<Declaration> mDeclaration;
|
RefPtr<Declaration> mDeclaration;
|
||||||
|
RefPtr<DOMCSSStyleRule> mDOMRule;
|
||||||
// We own it, and it aggregates its refcount with us.
|
|
||||||
UniquePtr<DOMCSSDeclarationImpl> mDOMDeclaration;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
StyleRule& operator=(const StyleRule& aCopy) = delete;
|
StyleRule& operator=(const StyleRule& aCopy) = delete;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче