2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2004-07-28 07:08:41 +00:00
|
|
|
// vim:cindent:tabstop=2:expandtab:shiftwidth=2:
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2004-07-28 07:08:41 +00:00
|
|
|
|
2006-03-25 05:47:31 +00:00
|
|
|
/*
|
|
|
|
* style rule processor for CSS style sheets, responsible for selector
|
|
|
|
* matching and cascading
|
|
|
|
*/
|
|
|
|
|
2004-07-28 07:08:41 +00:00
|
|
|
#ifndef nsCSSRuleProcessor_h_
|
|
|
|
#define nsCSSRuleProcessor_h_
|
1999-10-08 03:09:31 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
1999-10-08 03:09:31 +00:00
|
|
|
#include "nsIStyleRuleProcessor.h"
|
2006-04-03 23:52:17 +00:00
|
|
|
#include "nsCSSStyleSheet.h"
|
2008-11-25 23:22:38 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2009-08-01 15:53:40 +00:00
|
|
|
#include "nsCSSRules.h"
|
2011-03-29 17:29:21 +00:00
|
|
|
#include "nsRuleWalker.h"
|
2011-12-06 04:58:15 +00:00
|
|
|
#include "nsEventStates.h"
|
1999-10-08 03:09:31 +00:00
|
|
|
|
2010-05-11 20:41:47 +00:00
|
|
|
struct CascadeEnumData;
|
2011-12-22 10:50:56 +00:00
|
|
|
struct nsCSSSelector;
|
|
|
|
struct nsCSSSelectorList;
|
|
|
|
struct RuleCascadeData;
|
2011-03-29 17:29:21 +00:00
|
|
|
struct TreeMatchContext;
|
2011-04-12 06:18:43 +00:00
|
|
|
class nsCSSKeyframesRule;
|
1999-10-08 03:09:31 +00:00
|
|
|
|
2004-07-28 07:08:41 +00:00
|
|
|
/**
|
|
|
|
* The CSS style rule processor provides a mechanism for sibling style
|
|
|
|
* sheets to combine their rule processing in order to allow proper
|
|
|
|
* cascading to happen.
|
1999-10-08 03:09:31 +00:00
|
|
|
*
|
2004-07-28 07:08:41 +00:00
|
|
|
* CSS style rule processors keep a live reference on all style sheets
|
|
|
|
* bound to them. The CSS style sheets keep a weak reference to all the
|
|
|
|
* processors that they are bound to (many to many). The CSS style sheet
|
|
|
|
* is told when the rule processor is going away (via DropRuleProcessor).
|
1999-10-08 03:09:31 +00:00
|
|
|
*/
|
2004-07-28 07:08:41 +00:00
|
|
|
|
|
|
|
class nsCSSRuleProcessor: public nsIStyleRuleProcessor {
|
|
|
|
public:
|
2010-05-11 20:41:47 +00:00
|
|
|
typedef nsTArray<nsRefPtr<nsCSSStyleSheet> > sheet_array_type;
|
|
|
|
|
2013-01-08 23:25:47 +00:00
|
|
|
// aScopeElement must be non-null iff aSheetType is
|
|
|
|
// nsStyleSet::eScopedDocSheet.
|
|
|
|
nsCSSRuleProcessor(const sheet_array_type& aSheets,
|
|
|
|
uint8_t aSheetType,
|
|
|
|
mozilla::dom::Element* aScopeElement);
|
2004-07-28 07:08:41 +00:00
|
|
|
virtual ~nsCSSRuleProcessor();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
1999-10-08 03:09:31 +00:00
|
|
|
public:
|
2004-07-28 07:08:41 +00:00
|
|
|
nsresult ClearRuleCascades();
|
|
|
|
|
2010-04-07 17:29:10 +00:00
|
|
|
static nsresult Startup();
|
|
|
|
static void Shutdown();
|
2008-08-05 20:02:43 +00:00
|
|
|
static void FreeSystemMetrics();
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool HasSystemMetric(nsIAtom* aMetric);
|
2007-11-19 20:08:20 +00:00
|
|
|
|
2008-07-22 00:55:52 +00:00
|
|
|
/*
|
2011-03-29 17:29:20 +00:00
|
|
|
* Returns true if the given aElement matches one of the
|
2008-07-22 00:55:52 +00:00
|
|
|
* selectors in aSelectorList. Note that this method will assume
|
2011-03-29 17:29:21 +00:00
|
|
|
* the given aElement is not a relevant link. aSelectorList must not
|
2009-12-11 07:37:41 +00:00
|
|
|
* include any pseudo-element selectors. aSelectorList is allowed
|
2011-10-17 14:59:28 +00:00
|
|
|
* to be null; in this case false will be returned.
|
2008-07-22 00:55:52 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool SelectorListMatches(mozilla::dom::Element* aElement,
|
2011-03-29 17:29:21 +00:00
|
|
|
TreeMatchContext& aTreeMatchContext,
|
2008-07-22 00:55:52 +00:00
|
|
|
nsCSSSelectorList* aSelectorList);
|
|
|
|
|
2011-03-29 17:29:21 +00:00
|
|
|
/*
|
|
|
|
* Helper to get the content state for a content node. This may be
|
|
|
|
* slightly adjusted from IntrinsicState().
|
|
|
|
*/
|
2012-03-30 06:16:22 +00:00
|
|
|
static nsEventStates GetContentState(mozilla::dom::Element* aElement,
|
|
|
|
const TreeMatchContext& aTreeMatchContext);
|
2011-03-29 17:29:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper to get the content state for :visited handling for an element
|
|
|
|
*/
|
|
|
|
static nsEventStates GetContentStateForVisitedHandling(
|
|
|
|
mozilla::dom::Element* aElement,
|
2012-03-30 06:16:22 +00:00
|
|
|
const TreeMatchContext& aTreeMatchContext,
|
2011-03-29 17:29:21 +00:00
|
|
|
nsRuleWalker::VisitedHandlingType aVisitedHandling,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsRelevantLink);
|
2011-03-29 17:29:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper to test whether a node is a link
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsLink(mozilla::dom::Element* aElement);
|
2011-03-29 17:29:21 +00:00
|
|
|
|
2004-07-28 07:08:41 +00:00
|
|
|
// nsIStyleRuleProcessor
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void RulesMatching(ElementRuleProcessorData* aData) MOZ_OVERRIDE;
|
2004-07-28 07:08:41 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void RulesMatching(PseudoElementRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-11 07:37:40 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void RulesMatching(AnonBoxRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-11 07:37:40 +00:00
|
|
|
|
2009-12-11 07:37:40 +00:00
|
|
|
#ifdef MOZ_XUL
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void RulesMatching(XULTreeRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-11 07:37:40 +00:00
|
|
|
#endif
|
2004-07-28 07:08:41 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsRestyleHint HasStateDependentStyle(StateRuleProcessorData* aData) MOZ_OVERRIDE;
|
2004-07-28 07:08:41 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool HasDocumentStateDependentStyle(StateRuleProcessorData* aData) MOZ_OVERRIDE;
|
2010-03-17 17:10:57 +00:00
|
|
|
|
2010-04-01 00:43:32 +00:00
|
|
|
virtual nsRestyleHint
|
2012-09-14 16:10:08 +00:00
|
|
|
HasAttributeDependentStyle(AttributeRuleProcessorData* aData) MOZ_OVERRIDE;
|
2004-07-28 07:08:41 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool MediumFeaturesChanged(nsPresContext* aPresContext) MOZ_OVERRIDE;
|
2008-07-26 16:14:48 +00:00
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
virtual size_t SizeOfExcludingThis(mozilla::MallocSizeOf mallocSizeOf)
|
2013-03-24 02:14:43 +00:00
|
|
|
const MOZ_MUST_OVERRIDE MOZ_OVERRIDE;
|
2013-06-23 12:03:39 +00:00
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf mallocSizeOf)
|
2013-03-24 02:14:43 +00:00
|
|
|
const MOZ_MUST_OVERRIDE MOZ_OVERRIDE;
|
2011-08-01 18:25:20 +00:00
|
|
|
|
2008-11-25 23:22:38 +00:00
|
|
|
// Append all the currently-active font face rules to aArray. Return
|
|
|
|
// true for success and false for failure.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool AppendFontFaceRules(nsPresContext* aPresContext,
|
2011-12-09 05:01:52 +00:00
|
|
|
nsTArray<nsFontFaceRuleContainer>& aArray);
|
2008-11-25 23:22:38 +00:00
|
|
|
|
2013-08-15 04:58:37 +00:00
|
|
|
nsCSSKeyframesRule* KeyframesRuleForName(nsPresContext* aPresContext,
|
|
|
|
const nsString& aName);
|
2011-04-12 06:18:43 +00:00
|
|
|
|
2012-08-31 21:21:28 +00:00
|
|
|
bool AppendPageRules(nsPresContext* aPresContext,
|
|
|
|
nsTArray<nsCSSPageRule*>& aArray);
|
|
|
|
|
2013-05-20 02:59:20 +00:00
|
|
|
bool AppendFontFeatureValuesRules(nsPresContext* aPresContext,
|
|
|
|
nsTArray<nsCSSFontFeatureValuesRule*>& aArray);
|
|
|
|
|
2013-01-08 23:25:47 +00:00
|
|
|
/**
|
|
|
|
* Returns the scope element for the scoped style sheets this rule
|
|
|
|
* processor is for. If this is not a rule processor for scoped style
|
|
|
|
* sheets, it returns null.
|
|
|
|
*/
|
|
|
|
mozilla::dom::Element* GetScopeElement() const { return mScopeElement; }
|
|
|
|
|
2008-08-06 17:42:56 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
void AssertQuirksChangeOK() {
|
2008-11-25 21:27:54 +00:00
|
|
|
NS_ASSERTION(!mRuleCascades, "can't toggle quirks style sheet without "
|
|
|
|
"clearing rule cascades");
|
2008-08-06 17:42:56 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-09 20:53:45 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
// Cached theme identifier for the moz-windows-theme media query.
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint8_t GetWindowsThemeIdentifier();
|
|
|
|
static void SetWindowsThemeIdentifier(uint8_t aId) {
|
2010-10-09 20:53:45 +00:00
|
|
|
sWinThemeId = aId;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-12-06 04:58:15 +00:00
|
|
|
struct StateSelector {
|
|
|
|
StateSelector(nsEventStates aStates, nsCSSSelector* aSelector)
|
|
|
|
: mStates(aStates),
|
|
|
|
mSelector(aSelector)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsEventStates mStates;
|
|
|
|
nsCSSSelector* mSelector;
|
|
|
|
};
|
|
|
|
|
2008-10-07 22:10:19 +00:00
|
|
|
private:
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool CascadeSheet(nsCSSStyleSheet* aSheet, CascadeEnumData* aData);
|
2008-10-07 22:10:19 +00:00
|
|
|
|
2004-08-05 18:26:14 +00:00
|
|
|
RuleCascadeData* GetRuleCascade(nsPresContext* aPresContext);
|
2008-07-26 16:14:48 +00:00
|
|
|
void RefreshRuleCascade(nsPresContext* aPresContext);
|
1999-10-08 03:09:31 +00:00
|
|
|
|
2006-06-08 14:32:20 +00:00
|
|
|
// The sheet order here is the same as in nsStyleSet::mSheets
|
2010-05-11 20:41:47 +00:00
|
|
|
sheet_array_type mSheets;
|
1999-10-14 00:59:21 +00:00
|
|
|
|
2008-07-26 16:14:48 +00:00
|
|
|
// active first, then cached (most recent first)
|
2004-08-05 18:26:14 +00:00
|
|
|
RuleCascadeData* mRuleCascades;
|
2008-07-26 16:14:48 +00:00
|
|
|
|
|
|
|
// The last pres context for which GetRuleCascades was called.
|
|
|
|
nsPresContext *mLastPresContext;
|
2013-01-08 23:25:47 +00:00
|
|
|
|
|
|
|
// The scope element for this rule processor's scoped style sheets.
|
|
|
|
// Only used if mSheetType == nsStyleSet::eScopedDocSheet.
|
|
|
|
nsRefPtr<mozilla::dom::Element> mScopeElement;
|
|
|
|
|
2008-11-27 03:50:16 +00:00
|
|
|
// type of stylesheet using this processor
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mSheetType; // == nsStyleSet::sheetType
|
2010-10-09 20:53:45 +00:00
|
|
|
|
|
|
|
#ifdef XP_WIN
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint8_t sWinThemeId;
|
2010-10-09 20:53:45 +00:00
|
|
|
#endif
|
1999-10-08 03:09:31 +00:00
|
|
|
};
|
|
|
|
|
2004-07-28 07:08:41 +00:00
|
|
|
#endif /* nsCSSRuleProcessor_h_ */
|