mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-29 10:08:38 +00:00
8fd0c73b26
- test part of Bug 789788 - Revise the don't-use-document-fonts option (1b6a0e6ed)
- Bug 1172782 - Change how nsTHashtable::Clear() works. r=froydnj. (c8c2adc51)
- Bug 1180072 - Remove PL_DHashTableEnumerate(). r=froydnj. (b5448efda)
- Bug 1180122 - Make Chaos Mode affect PLDHashTable's iterators. r=froydnj. (11fd0e222)
- Bug 1182516 - Add Chaos Mode environment variable MOZ_CHAOSMODE. r=roc (d636f6c90)
- Bug 1182516 - Fix mid-air conflict with 3fd2ab6cb762 on a CLOSED TREE. r=bustage (8dec46b7a)
- Bug 1184280 - Remove warning about mDisabledJSAndPlugins being false. r=ehsan (c23e96fc1)
- Bug 1181411 - Test some expected aborts in PLDHashTable. r=glandium. (682788df7)
- Bug 1185399 (part 1) - Remove macros from pldhash.h. r=froydnj. (15001ff2a)
- Bug 1185399 (part 2) - Remove macros from pldhash.cpp. r=froydnj. (afeddcc90)
- Bug 1187197 (part 1) - Move comments from PL_DHashTable* functions to the equivalent methods. r=froydnj. (78921590e)
- Bug 1187197 (part 2) - Put function return types on their own line. r=froydnj. (9aae02f83)
- Bug 1187197 (part 3) - Convert pldhash.{cpp,h} to C++ style comments. r=froydnj. (57afe7e1f)
- Bug 1202526 (part 1) - Add PLDHashTable::RemoveEntry(). r=froydnj. (1b5453695)
- Bug 1202526 (part 2) - Avoid PL_DHashTableRawRemove() in nsLoadGroup. r=mcmanus. (1ad20b17f)
- Bug 1202526 (part 3) - Avoid PL_DHashTableRawRemove() in nsDocument. r=bz. (cdde6eff0)
- Bug 1202526 (part 4) - Avoid PL_DHashTableRawRemove() in nsPropertyTable. r=bz. (ed437f4d6)
- Bug 1202526 (part 5) - Use PLDHashTable::RemoveEntry() in nsSecureBrowserUIImpl. r=dkeeler. (ac1d44066)
- Bug 1202526 (part 6) - Use PLDHashTable::RemoveEntry() in XULDocument. r=bz. (2639a053e)
- Bug 1202526 (part 7) - Use PLDHashTable::RemoveEntry() in prefs code. r=bz. (2eb3b1097)
- Bug 1202526 (part 8) - Use PLDHashTable::RemoveEntry() in the cycle collector. r=mccr8. (ec77d7635)
- Bug 1130096 - Convert embedding/components/commandhandler/ to Gecko style. r=mccr8 (a5aecf9de)
- Bug 1184842. Remove layout.frames.force_resizability pref. r=mats (9226b0caf)
- Bug 1184842. Remove frameset mVisibilityOverride since it's always false now. r=mats (1b439feb8)
- Bug 1184842. Change nsAttrAndChildArray::SetAndTakeAttr to nsAttrAndChildArray::SetAndSwapAttr. r=peterv (1442f0eae)
- Bug 1184842. Make SetAttrAndNotify use the real old value instead of aOldValue when possible. r=bz (bc45970f5)
- Bug 1184842. Add aOldValue parameter to nsNodeUtils::AttributeChanged. r=peterv (31bf8c08e)
- Bug 1184842. Pass aOldValue to all mutation observers. r=peterv (e69daf7f7)
- Bug 1184842. Allow BeforeSetAttr to preparse aValue. r=peterv (9c51655de)
- follow up fix to Bug 1184842. Allow BeforeSetAttr to preparse aValue (fb997a066)
- Bug 1149042 - Call AttributeWillChange before a style="" attribute gets created when touching element.style. r=smaug (41f2ea361)
- Bug 1184842. Pass preparsed attribute values to nsNodeUtils::AttributeWillChange. r=peterv (646622252)
- Bug 1013743, MutationObserver should observe only the subtree it is attached to, r=wchen (ad606eb15)
- Bug 1184842. Add aNewValue to nsIMutationObserver::AttributeWillChange. r=peterv (796042972)
- Bug 1184842. Preparse class attribute values in Element::BeforeSetAttr. r=peterv (e18989b2b)
- Bug 1154149 - Remove nsPresContext arguments from a bunch of nsStyleSBug 1154149 - Remove nsPresContext arguments from a bunch of nsStyleS (b7797ef66)
- Bug 1184842. Route aOldValue/aNewValue to AttributeData. r=heycam (14489941b)
- Bug 1184842. Restyling should consider only the classes that have changed. r=heycam (5a5e670dc)
- Bug 1121760 (part 1) - Remove PL_DHashTableSearch(). r=poiru. (d92813655)
741 lines
21 KiB
C++
741 lines
21 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
// vim:cindent:ts=2:et:sw=2:
|
|
/* 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/. */
|
|
|
|
/* rules in a CSS stylesheet other than style rules (e.g., @import rules) */
|
|
|
|
#ifndef nsCSSRules_h_
|
|
#define nsCSSRules_h_
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/Move.h"
|
|
|
|
#include "mozilla/MemoryReporting.h"
|
|
#include "mozilla/css/GroupRule.h"
|
|
#include "mozilla/dom/FontFace.h"
|
|
#include "nsIDOMCSSConditionRule.h"
|
|
#include "nsIDOMCSSCounterStyleRule.h"
|
|
#include "nsIDOMCSSFontFaceRule.h"
|
|
#include "nsIDOMCSSFontFeatureValuesRule.h"
|
|
#include "nsIDOMCSSGroupingRule.h"
|
|
#include "nsIDOMCSSMediaRule.h"
|
|
#include "nsIDOMCSSMozDocumentRule.h"
|
|
#include "nsIDOMCSSSupportsRule.h"
|
|
#include "nsIDOMMozCSSKeyframeRule.h"
|
|
#include "nsIDOMMozCSSKeyframesRule.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCSSProperty.h"
|
|
#include "nsCSSValue.h"
|
|
#include "nsIDOMCSSCharsetRule.h"
|
|
#include "nsTArray.h"
|
|
#include "nsDOMCSSDeclaration.h"
|
|
#include "Declaration.h"
|
|
#include "nsIDOMCSSPageRule.h"
|
|
#include "StyleRule.h"
|
|
#include "gfxFontFeatures.h"
|
|
|
|
class nsMediaList;
|
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
|
|
namespace css {
|
|
|
|
class MediaRule final : public GroupRule,
|
|
public nsIDOMCSSMediaRule
|
|
{
|
|
public:
|
|
MediaRule(uint32_t aLineNumber, uint32_t aColumnNumber);
|
|
private:
|
|
MediaRule(const MediaRule& aCopy);
|
|
~MediaRule();
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
virtual void SetStyleSheet(mozilla::CSSStyleSheet* aSheet) override; //override GroupRule
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<Rule> Clone() const override;
|
|
virtual nsIDOMCSSRule* GetDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
virtual nsIDOMCSSRule* GetExistingDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSGroupingRule interface
|
|
NS_DECL_NSIDOMCSSGROUPINGRULE
|
|
|
|
// nsIDOMCSSConditionRule interface
|
|
NS_DECL_NSIDOMCSSCONDITIONRULE
|
|
|
|
// nsIDOMCSSMediaRule interface
|
|
NS_DECL_NSIDOMCSSMEDIARULE
|
|
|
|
// rest of GroupRule
|
|
virtual bool UseForPresentation(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey& aKey) override;
|
|
|
|
// @media rule methods
|
|
nsresult SetMedia(nsMediaList* aMedia);
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf)
|
|
const override MOZ_MUST_OVERRIDE;
|
|
|
|
protected:
|
|
void AppendConditionText(nsAString& aOutput);
|
|
|
|
nsRefPtr<nsMediaList> mMedia;
|
|
};
|
|
|
|
class DocumentRule final : public GroupRule,
|
|
public nsIDOMCSSMozDocumentRule
|
|
{
|
|
public:
|
|
DocumentRule(uint32_t aLineNumber, uint32_t aColumnNumber);
|
|
private:
|
|
DocumentRule(const DocumentRule& aCopy);
|
|
~DocumentRule();
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<Rule> Clone() const override;
|
|
virtual nsIDOMCSSRule* GetDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
virtual nsIDOMCSSRule* GetExistingDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSGroupingRule interface
|
|
NS_DECL_NSIDOMCSSGROUPINGRULE
|
|
|
|
// nsIDOMCSSConditionRule interface
|
|
NS_DECL_NSIDOMCSSCONDITIONRULE
|
|
|
|
// nsIDOMCSSMozDocumentRule interface
|
|
NS_DECL_NSIDOMCSSMOZDOCUMENTRULE
|
|
|
|
// rest of GroupRule
|
|
virtual bool UseForPresentation(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey& aKey) override;
|
|
|
|
bool UseForPresentation(nsPresContext* aPresContext);
|
|
|
|
enum Function {
|
|
eURL,
|
|
eURLPrefix,
|
|
eDomain,
|
|
eRegExp
|
|
};
|
|
|
|
struct URL {
|
|
Function func;
|
|
nsCString url;
|
|
URL *next;
|
|
|
|
URL() : next(nullptr) {}
|
|
URL(const URL& aOther)
|
|
: func(aOther.func)
|
|
, url(aOther.url)
|
|
, next(aOther.next ? new URL(*aOther.next) : nullptr)
|
|
{
|
|
}
|
|
~URL();
|
|
};
|
|
|
|
void SetURLs(URL *aURLs) { mURLs = aURLs; }
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf)
|
|
const override MOZ_MUST_OVERRIDE;
|
|
|
|
protected:
|
|
void AppendConditionText(nsAString& aOutput);
|
|
|
|
nsAutoPtr<URL> mURLs; // linked list of |struct URL| above.
|
|
};
|
|
|
|
} // namespace css
|
|
|
|
struct CSSFontFaceDescriptors
|
|
{
|
|
#define CSS_FONT_DESC(name_, method_) nsCSSValue m##method_;
|
|
#include "nsCSSFontDescList.h"
|
|
#undef CSS_FONT_DESC
|
|
|
|
const nsCSSValue& Get(nsCSSFontDesc aFontDescID) const;
|
|
nsCSSValue& Get(nsCSSFontDesc aFontDescID);
|
|
|
|
private:
|
|
static nsCSSValue CSSFontFaceDescriptors::* const Fields[];
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
// A nsCSSFontFaceStyleDecl is always embedded in a nsCSSFontFaceRule.
|
|
class nsCSSFontFaceRule;
|
|
class nsCSSFontFaceStyleDecl final : public nsICSSDeclaration
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIDOMCSSSTYLEDECLARATION_HELPER
|
|
NS_DECL_NSICSSDECLARATION
|
|
virtual already_AddRefed<mozilla::dom::CSSValue>
|
|
GetPropertyCSSValue(const nsAString& aProp, mozilla::ErrorResult& aRv)
|
|
override;
|
|
using nsICSSDeclaration::GetPropertyCSSValue;
|
|
|
|
virtual nsINode *GetParentObject() override;
|
|
virtual void IndexedGetter(uint32_t aIndex, bool& aFound, nsAString& aPropName) override;
|
|
|
|
nsresult GetPropertyValue(nsCSSFontDesc aFontDescID,
|
|
nsAString & aResult) const;
|
|
|
|
virtual JSObject* WrapObject(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
~nsCSSFontFaceStyleDecl() {}
|
|
|
|
friend class nsCSSFontFaceRule;
|
|
|
|
inline nsCSSFontFaceRule* ContainingRule();
|
|
inline const nsCSSFontFaceRule* ContainingRule() const;
|
|
|
|
mozilla::CSSFontFaceDescriptors mDescriptors;
|
|
|
|
private:
|
|
// NOT TO BE IMPLEMENTED
|
|
// This object cannot be allocated on its own, only as part of
|
|
// nsCSSFontFaceRule.
|
|
void* operator new(size_t size) CPP_THROW_NEW;
|
|
};
|
|
|
|
class nsCSSFontFaceRule final : public mozilla::css::Rule,
|
|
public nsIDOMCSSFontFaceRule
|
|
{
|
|
public:
|
|
nsCSSFontFaceRule(uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::Rule(aLineNumber, aColumnNumber) {}
|
|
|
|
nsCSSFontFaceRule(const nsCSSFontFaceRule& aCopy)
|
|
// copy everything except our reference count
|
|
: mozilla::css::Rule(aCopy), mDecl(aCopy.mDecl) {}
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsCSSFontFaceRule,
|
|
mozilla::css::Rule)
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
DECL_STYLE_RULE_INHERIT
|
|
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSFontFaceRule interface
|
|
NS_DECL_NSIDOMCSSFONTFACERULE
|
|
|
|
void SetDesc(nsCSSFontDesc aDescID, nsCSSValue const & aValue);
|
|
void GetDesc(nsCSSFontDesc aDescID, nsCSSValue & aValue);
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
void GetDescriptors(mozilla::CSSFontFaceDescriptors& aDescriptors) const
|
|
{ aDescriptors = mDecl.mDescriptors; }
|
|
|
|
protected:
|
|
~nsCSSFontFaceRule() {}
|
|
|
|
friend class nsCSSFontFaceStyleDecl;
|
|
nsCSSFontFaceStyleDecl mDecl;
|
|
};
|
|
|
|
// nsFontFaceRuleContainer - used for associating sheet type with
|
|
// specific @font-face rules
|
|
struct nsFontFaceRuleContainer {
|
|
nsRefPtr<nsCSSFontFaceRule> mRule;
|
|
uint8_t mSheetType;
|
|
};
|
|
|
|
inline nsCSSFontFaceRule*
|
|
nsCSSFontFaceStyleDecl::ContainingRule()
|
|
{
|
|
return reinterpret_cast<nsCSSFontFaceRule*>
|
|
(reinterpret_cast<char*>(this) - offsetof(nsCSSFontFaceRule, mDecl));
|
|
}
|
|
|
|
inline const nsCSSFontFaceRule*
|
|
nsCSSFontFaceStyleDecl::ContainingRule() const
|
|
{
|
|
return reinterpret_cast<const nsCSSFontFaceRule*>
|
|
(reinterpret_cast<const char*>(this) - offsetof(nsCSSFontFaceRule, mDecl));
|
|
}
|
|
|
|
class nsCSSFontFeatureValuesRule final : public mozilla::css::Rule,
|
|
public nsIDOMCSSFontFeatureValuesRule
|
|
{
|
|
public:
|
|
nsCSSFontFeatureValuesRule(uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::Rule(aLineNumber, aColumnNumber) {}
|
|
|
|
nsCSSFontFeatureValuesRule(const nsCSSFontFeatureValuesRule& aCopy)
|
|
// copy everything except our reference count
|
|
: mozilla::css::Rule(aCopy),
|
|
mFamilyList(aCopy.mFamilyList),
|
|
mFeatureValues(aCopy.mFeatureValues) {}
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
DECL_STYLE_RULE_INHERIT
|
|
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSFontFaceRule interface
|
|
NS_DECL_NSIDOMCSSFONTFEATUREVALUESRULE
|
|
|
|
const mozilla::FontFamilyList& GetFamilyList() { return mFamilyList; }
|
|
void SetFamilyList(const mozilla::FontFamilyList& aFamilyList);
|
|
|
|
void AddValueList(int32_t aVariantAlternate,
|
|
nsTArray<gfxFontFeatureValueSet::ValueList>& aValueList);
|
|
|
|
const nsTArray<gfxFontFeatureValueSet::FeatureValues>& GetFeatureValues()
|
|
{
|
|
return mFeatureValues;
|
|
}
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
protected:
|
|
~nsCSSFontFeatureValuesRule() {}
|
|
|
|
mozilla::FontFamilyList mFamilyList;
|
|
nsTArray<gfxFontFeatureValueSet::FeatureValues> mFeatureValues;
|
|
};
|
|
|
|
namespace mozilla {
|
|
namespace css {
|
|
|
|
class CharsetRule final : public Rule,
|
|
public nsIDOMCSSCharsetRule
|
|
{
|
|
public:
|
|
CharsetRule(const nsAString& aEncoding,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber);
|
|
private:
|
|
// For |Clone|
|
|
CharsetRule(const CharsetRule& aCopy);
|
|
~CharsetRule() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
DECL_STYLE_RULE_INHERIT
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSCharsetRule methods
|
|
NS_IMETHOD GetEncoding(nsAString& aEncoding) override;
|
|
NS_IMETHOD SetEncoding(const nsAString& aEncoding) override;
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
private:
|
|
nsString mEncoding;
|
|
};
|
|
|
|
} // namespace css
|
|
} // namespace mozilla
|
|
|
|
class nsCSSKeyframeRule;
|
|
|
|
class nsCSSKeyframeStyleDeclaration final : public nsDOMCSSDeclaration
|
|
{
|
|
public:
|
|
explicit nsCSSKeyframeStyleDeclaration(nsCSSKeyframeRule *aRule);
|
|
|
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule **aParent) override;
|
|
void DropReference() { mRule = nullptr; }
|
|
virtual mozilla::css::Declaration* GetCSSDeclaration(Operation aOperation) override;
|
|
virtual nsresult SetCSSDeclaration(mozilla::css::Declaration* aDecl) override;
|
|
virtual void GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv) override;
|
|
virtual nsIDocument* DocToUpdate() override;
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsCSSKeyframeStyleDeclaration,
|
|
nsICSSDeclaration)
|
|
|
|
virtual nsINode* GetParentObject() override;
|
|
|
|
protected:
|
|
virtual ~nsCSSKeyframeStyleDeclaration();
|
|
|
|
// This reference is not reference-counted. The rule object tells us
|
|
// when it's about to go away.
|
|
nsCSSKeyframeRule *mRule;
|
|
};
|
|
|
|
class nsCSSKeyframeRule final : public mozilla::css::Rule,
|
|
public nsIDOMMozCSSKeyframeRule
|
|
{
|
|
public:
|
|
// WARNING: Steals the contents of aKeys *and* aDeclaration
|
|
nsCSSKeyframeRule(InfallibleTArray<float>& aKeys,
|
|
nsAutoPtr<mozilla::css::Declaration>&& aDeclaration,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::Rule(aLineNumber, aColumnNumber)
|
|
, mDeclaration(mozilla::Move(aDeclaration))
|
|
{
|
|
mKeys.SwapElements(aKeys);
|
|
}
|
|
private:
|
|
nsCSSKeyframeRule(const nsCSSKeyframeRule& aCopy);
|
|
~nsCSSKeyframeRule();
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsCSSKeyframeRule, nsIStyleRule)
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
DECL_STYLE_RULE_INHERIT
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMMozCSSKeyframeRule interface
|
|
NS_DECL_NSIDOMMOZCSSKEYFRAMERULE
|
|
|
|
const nsTArray<float>& GetKeys() const { return mKeys; }
|
|
mozilla::css::Declaration* Declaration() { return mDeclaration; }
|
|
|
|
void ChangeDeclaration(mozilla::css::Declaration* aDeclaration);
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
void DoGetKeyText(nsAString &aKeyText) const;
|
|
|
|
private:
|
|
nsTArray<float> mKeys;
|
|
nsAutoPtr<mozilla::css::Declaration> mDeclaration;
|
|
// lazily created when needed:
|
|
nsRefPtr<nsCSSKeyframeStyleDeclaration> mDOMDeclaration;
|
|
};
|
|
|
|
class nsCSSKeyframesRule final : public mozilla::css::GroupRule,
|
|
public nsIDOMMozCSSKeyframesRule
|
|
{
|
|
public:
|
|
nsCSSKeyframesRule(const nsSubstring& aName,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::GroupRule(aLineNumber, aColumnNumber)
|
|
, mName(aName)
|
|
{
|
|
}
|
|
private:
|
|
nsCSSKeyframesRule(const nsCSSKeyframesRule& aCopy);
|
|
~nsCSSKeyframesRule();
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
virtual nsIDOMCSSRule* GetDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
virtual nsIDOMCSSRule* GetExistingDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMMozCSSKeyframesRule interface
|
|
NS_DECL_NSIDOMMOZCSSKEYFRAMESRULE
|
|
|
|
// rest of GroupRule
|
|
virtual bool UseForPresentation(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey& aKey) override;
|
|
|
|
const nsString& GetName() { return mName; }
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
private:
|
|
uint32_t FindRuleIndexForKey(const nsAString& aKey);
|
|
|
|
nsString mName;
|
|
};
|
|
|
|
class nsCSSPageRule;
|
|
|
|
class nsCSSPageStyleDeclaration final : public nsDOMCSSDeclaration
|
|
{
|
|
public:
|
|
explicit nsCSSPageStyleDeclaration(nsCSSPageRule *aRule);
|
|
|
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule **aParent) override;
|
|
void DropReference() { mRule = nullptr; }
|
|
virtual mozilla::css::Declaration* GetCSSDeclaration(Operation aOperation) override;
|
|
virtual nsresult SetCSSDeclaration(mozilla::css::Declaration* aDecl) override;
|
|
virtual void GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv) override;
|
|
virtual nsIDocument* DocToUpdate() override;
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsCSSPageStyleDeclaration,
|
|
nsICSSDeclaration)
|
|
|
|
virtual nsINode *GetParentObject() override;
|
|
|
|
protected:
|
|
virtual ~nsCSSPageStyleDeclaration();
|
|
|
|
// This reference is not reference-counted. The rule object tells us
|
|
// when it's about to go away.
|
|
nsCSSPageRule *mRule;
|
|
};
|
|
|
|
class nsCSSPageRule final : public mozilla::css::Rule,
|
|
public nsIDOMCSSPageRule
|
|
{
|
|
public:
|
|
// WARNING: Steals the contents of aDeclaration
|
|
nsCSSPageRule(nsAutoPtr<mozilla::css::Declaration>&& aDeclaration,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::Rule(aLineNumber, aColumnNumber)
|
|
, mDeclaration(mozilla::Move(aDeclaration))
|
|
, mImportantRule(nullptr)
|
|
{
|
|
}
|
|
private:
|
|
nsCSSPageRule(const nsCSSPageRule& aCopy);
|
|
~nsCSSPageRule();
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsCSSPageRule, nsIDOMCSSPageRule)
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
DECL_STYLE_RULE_INHERIT
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSPageRule interface
|
|
NS_DECL_NSIDOMCSSPAGERULE
|
|
|
|
mozilla::css::Declaration* Declaration() { return mDeclaration; }
|
|
|
|
void ChangeDeclaration(mozilla::css::Declaration* aDeclaration);
|
|
|
|
mozilla::css::ImportantRule* GetImportantRule();
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
private:
|
|
nsAutoPtr<mozilla::css::Declaration> mDeclaration;
|
|
// lazily created when needed:
|
|
nsRefPtr<nsCSSPageStyleDeclaration> mDOMDeclaration;
|
|
nsRefPtr<mozilla::css::ImportantRule> mImportantRule;
|
|
};
|
|
|
|
namespace mozilla {
|
|
|
|
class CSSSupportsRule : public css::GroupRule,
|
|
public nsIDOMCSSSupportsRule
|
|
{
|
|
public:
|
|
CSSSupportsRule(bool aConditionMet, const nsString& aCondition,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber);
|
|
CSSSupportsRule(const CSSSupportsRule& aCopy);
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
virtual bool UseForPresentation(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey& aKey) override;
|
|
virtual nsIDOMCSSRule* GetDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
virtual nsIDOMCSSRule* GetExistingDOMRule() override
|
|
{
|
|
return this;
|
|
}
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSGroupingRule interface
|
|
NS_DECL_NSIDOMCSSGROUPINGRULE
|
|
|
|
// nsIDOMCSSConditionRule interface
|
|
NS_DECL_NSIDOMCSSCONDITIONRULE
|
|
|
|
// nsIDOMCSSSupportsRule interface
|
|
NS_DECL_NSIDOMCSSSUPPORTSRULE
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
protected:
|
|
virtual ~CSSSupportsRule();
|
|
|
|
bool mUseGroup;
|
|
nsString mCondition;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
class nsCSSCounterStyleRule final : public mozilla::css::Rule,
|
|
public nsIDOMCSSCounterStyleRule
|
|
{
|
|
public:
|
|
explicit nsCSSCounterStyleRule(const nsAString& aName,
|
|
uint32_t aLineNumber, uint32_t aColumnNumber)
|
|
: mozilla::css::Rule(aLineNumber, aColumnNumber)
|
|
, mName(aName)
|
|
, mGeneration(0)
|
|
{
|
|
}
|
|
|
|
private:
|
|
nsCSSCounterStyleRule(const nsCSSCounterStyleRule& aCopy);
|
|
~nsCSSCounterStyleRule();
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIStyleRule methods
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
|
#endif
|
|
|
|
// Rule methods
|
|
DECL_STYLE_RULE_INHERIT
|
|
virtual int32_t GetType() const override;
|
|
virtual already_AddRefed<mozilla::css::Rule> Clone() const override;
|
|
|
|
// nsIDOMCSSRule interface
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
// nsIDOMCSSCounterStyleRule
|
|
NS_DECL_NSIDOMCSSCOUNTERSTYLERULE
|
|
|
|
// This function is only used to check whether a non-empty value, which has
|
|
// been accepted by parser, is valid for the given system and descriptor.
|
|
static bool CheckDescValue(int32_t aSystem,
|
|
nsCSSCounterDesc aDescID,
|
|
const nsCSSValue& aValue);
|
|
|
|
const nsString& GetName() const { return mName; }
|
|
|
|
uint32_t GetGeneration() const { return mGeneration; }
|
|
|
|
int32_t GetSystem() const;
|
|
const nsCSSValue& GetSystemArgument() const;
|
|
|
|
const nsCSSValue& GetDesc(nsCSSCounterDesc aDescID) const
|
|
{
|
|
MOZ_ASSERT(aDescID >= 0 && aDescID < eCSSCounterDesc_COUNT,
|
|
"descriptor ID out of range");
|
|
return mValues[aDescID];
|
|
}
|
|
|
|
void SetDesc(nsCSSCounterDesc aDescID, const nsCSSValue& aValue);
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
private:
|
|
typedef NS_STDCALL_FUNCPROTO(nsresult, Getter, nsCSSCounterStyleRule,
|
|
GetSymbols, (nsAString&));
|
|
static const Getter kGetters[];
|
|
|
|
nsresult GetDescriptor(nsCSSCounterDesc aDescID, nsAString& aValue);
|
|
nsresult SetDescriptor(nsCSSCounterDesc aDescID, const nsAString& aValue);
|
|
|
|
nsString mName;
|
|
nsCSSValue mValues[eCSSCounterDesc_COUNT];
|
|
uint32_t mGeneration;
|
|
};
|
|
|
|
#endif /* !defined(nsCSSRules_h_) */
|