2016-02-24 10:01:10 +03:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/ServoStyleSet.h"
|
|
|
|
|
2016-12-01 11:19:50 +03:00
|
|
|
#include "mozilla/DocumentStyleRootIterator.h"
|
2016-07-13 23:42:47 +03:00
|
|
|
#include "mozilla/ServoRestyleManager.h"
|
2016-08-12 00:12:49 +03:00
|
|
|
#include "mozilla/dom/ChildIterator.h"
|
2016-02-24 10:01:10 +03:00
|
|
|
#include "nsCSSAnonBoxes.h"
|
2016-03-18 23:14:07 +03:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2016-04-29 07:01:44 +03:00
|
|
|
#include "nsIDocumentInlines.h"
|
2016-07-28 06:03:49 +03:00
|
|
|
#include "nsPrintfCString.h"
|
2016-03-18 23:14:07 +03:00
|
|
|
#include "nsStyleContext.h"
|
2016-02-26 04:51:02 +03:00
|
|
|
#include "nsStyleSet.h"
|
2016-02-24 10:01:10 +03:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSet::ServoStyleSet()
|
2016-03-18 23:14:07 +03:00
|
|
|
: mPresContext(nullptr)
|
2016-08-23 06:14:27 +03:00
|
|
|
, mRawSet(Servo_StyleSet_Init())
|
2016-01-27 05:02:04 +03:00
|
|
|
, mBatching(0)
|
2016-02-24 10:01:12 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-24 10:01:10 +03:00
|
|
|
void
|
|
|
|
ServoStyleSet::Init(nsPresContext* aPresContext)
|
|
|
|
{
|
2016-03-18 23:14:07 +03:00
|
|
|
mPresContext = aPresContext;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ServoStyleSet::BeginShutdown()
|
|
|
|
{
|
2016-11-18 11:54:10 +03:00
|
|
|
// It's important to do this before mRawSet is released, since that will cause
|
|
|
|
// a RuleTree GC, which needs to happen after we have dropped all of the
|
|
|
|
// document's strong references to RuleNodes. We also need to do it here,
|
|
|
|
// in BeginShutdown, and not in Shutdown, since Shutdown happens after the
|
|
|
|
// frame tree has been destroyed, but before the script runners that delete
|
|
|
|
// native anonymous content (which also could be holding on the RuleNodes)
|
|
|
|
// have run. By clearing style here, before the frame tree is destroyed,
|
|
|
|
// the AllChildrenIterator will find the anonymous content.
|
|
|
|
//
|
|
|
|
// Note that this is pretty bad for performance; we should find a way to
|
|
|
|
// get by with the ServoNodeDatas being dropped as part of the document
|
|
|
|
// going away.
|
2016-12-01 11:19:50 +03:00
|
|
|
DocumentStyleRootIterator iter(mPresContext->Document());
|
|
|
|
while (Element* root = iter.GetNextStyleRoot()) {
|
2016-11-18 11:54:10 +03:00
|
|
|
ServoRestyleManager::ClearServoDataFromSubtree(root);
|
|
|
|
}
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ServoStyleSet::Shutdown()
|
|
|
|
{
|
2016-01-27 05:02:04 +03:00
|
|
|
mRawSet = nullptr;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ServoStyleSet::GetAuthorStyleDisabled() const
|
|
|
|
{
|
2016-02-24 10:01:12 +03:00
|
|
|
return false;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::SetAuthorStyleDisabled(bool aStyleDisabled)
|
|
|
|
{
|
|
|
|
MOZ_CRASH("stylo: not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ServoStyleSet::BeginUpdate()
|
|
|
|
{
|
2016-02-24 10:01:12 +03:00
|
|
|
++mBatching;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::EndUpdate()
|
|
|
|
{
|
2016-02-24 10:01:12 +03:00
|
|
|
MOZ_ASSERT(mBatching > 0);
|
|
|
|
if (--mBatching > 0) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ... do something ...
|
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ResolveStyleFor(Element* aElement,
|
2016-11-02 09:11:24 +03:00
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
ConsumeStyleBehavior aConsume,
|
|
|
|
LazyComputeBehavior aMayCompute)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-04-29 07:04:16 +03:00
|
|
|
return GetContext(aElement, aParentContext, nullptr,
|
2016-11-02 09:11:24 +03:00
|
|
|
CSSPseudoElementType::NotPseudo, aConsume, aMayCompute);
|
2016-04-29 07:04:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::GetContext(nsIContent* aContent,
|
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
nsIAtom* aPseudoTag,
|
2016-11-02 09:11:24 +03:00
|
|
|
CSSPseudoElementType aPseudoType,
|
|
|
|
ConsumeStyleBehavior aConsume,
|
|
|
|
LazyComputeBehavior aMayCompute)
|
2016-04-29 07:04:16 +03:00
|
|
|
{
|
2016-11-02 09:11:24 +03:00
|
|
|
MOZ_ASSERT(aContent->IsElement());
|
|
|
|
Element* element = aContent->AsElement();
|
2016-08-12 21:30:29 +03:00
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
2016-11-02 09:11:24 +03:00
|
|
|
Servo_ResolveStyle(element, mRawSet.get(), aConsume, aMayCompute).Consume();
|
2016-03-18 23:14:07 +03:00
|
|
|
MOZ_ASSERT(computedValues);
|
2016-04-29 03:56:37 +03:00
|
|
|
return GetContext(computedValues.forget(), aParentContext, aPseudoTag, aPseudoType);
|
|
|
|
}
|
2016-03-18 23:14:07 +03:00
|
|
|
|
2016-04-29 03:56:37 +03:00
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::GetContext(already_AddRefed<ServoComputedValues> aComputedValues,
|
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
nsIAtom* aPseudoTag,
|
|
|
|
CSSPseudoElementType aPseudoType)
|
|
|
|
{
|
2016-03-18 23:14:07 +03:00
|
|
|
// XXXbholley: nsStyleSet does visited handling here.
|
|
|
|
|
|
|
|
// XXXbholley: Figure out the correct thing to pass here. Does this fixup
|
|
|
|
// duplicate something that servo already does?
|
|
|
|
bool skipFixup = false;
|
|
|
|
|
2016-04-29 07:04:16 +03:00
|
|
|
return NS_NewStyleContext(aParentContext, mPresContext, aPseudoTag,
|
2016-08-12 05:01:52 +03:00
|
|
|
aPseudoType, Move(aComputedValues), skipFixup);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ResolveStyleFor(Element* aElement,
|
|
|
|
nsStyleContext* aParentContext,
|
2016-11-02 09:11:24 +03:00
|
|
|
ConsumeStyleBehavior aConsume,
|
|
|
|
LazyComputeBehavior aMayCompute,
|
2016-02-24 10:01:10 +03:00
|
|
|
TreeMatchContext& aTreeMatchContext)
|
|
|
|
{
|
2016-04-27 05:34:49 +03:00
|
|
|
// aTreeMatchContext is used to speed up selector matching,
|
|
|
|
// but if the element already has a ServoComputedValues computed in
|
|
|
|
// advance, then we shouldn't need to use it.
|
2016-11-02 09:11:24 +03:00
|
|
|
return ResolveStyleFor(aElement, aParentContext, aConsume, aMayCompute);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
2016-04-29 07:01:44 +03:00
|
|
|
ServoStyleSet::ResolveStyleForText(nsIContent* aTextNode,
|
|
|
|
nsStyleContext* aParentContext)
|
|
|
|
{
|
2016-04-29 07:04:16 +03:00
|
|
|
MOZ_ASSERT(aTextNode && aTextNode->IsNodeOfType(nsINode::eTEXT));
|
2016-08-12 21:30:29 +03:00
|
|
|
MOZ_ASSERT(aTextNode->GetParent());
|
2016-10-26 02:27:08 +03:00
|
|
|
MOZ_ASSERT(aParentContext);
|
|
|
|
|
|
|
|
// Gecko expects text node style contexts to be like elements that match no
|
|
|
|
// rules: inherit the inherit structs, reset the reset structs. This is cheap
|
|
|
|
// enough to do on the main thread, which means that the parallel style system
|
|
|
|
// can avoid worrying about text nodes.
|
|
|
|
const ServoComputedValues* parentComputedValues =
|
|
|
|
aParentContext->StyleSource().AsServoComputedValues();
|
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
|
|
|
Servo_ComputedValues_Inherit(parentComputedValues).Consume();
|
2016-08-12 21:30:29 +03:00
|
|
|
|
|
|
|
return GetContext(computedValues.forget(), aParentContext,
|
|
|
|
nsCSSAnonBoxes::mozText, CSSPseudoElementType::AnonBox);
|
2016-04-29 07:01:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ResolveStyleForOtherNonElement(nsStyleContext* aParentContext)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-08-03 03:57:33 +03:00
|
|
|
// The parent context can be null if the non-element share a style context
|
|
|
|
// with the root of an anonymous subtree.
|
2016-10-18 07:29:03 +03:00
|
|
|
const ServoComputedValues* parent =
|
2016-08-03 03:57:33 +03:00
|
|
|
aParentContext ? aParentContext->StyleSource().AsServoComputedValues() : nullptr;
|
2016-08-12 21:30:29 +03:00
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
2016-08-23 06:14:27 +03:00
|
|
|
Servo_ComputedValues_Inherit(parent).Consume();
|
2016-05-06 01:32:00 +03:00
|
|
|
MOZ_ASSERT(computedValues);
|
|
|
|
|
|
|
|
return GetContext(computedValues.forget(), aParentContext,
|
|
|
|
nsCSSAnonBoxes::mozOtherNonElement,
|
|
|
|
CSSPseudoElementType::AnonBox);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ResolvePseudoElementStyle(Element* aParentElement,
|
|
|
|
CSSPseudoElementType aType,
|
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
Element* aPseudoElement)
|
|
|
|
{
|
2016-05-05 03:59:10 +03:00
|
|
|
if (aPseudoElement) {
|
|
|
|
NS_ERROR("stylo: We don't support CSS_PSEUDO_ELEMENT_SUPPORTS_USER_ACTION_STATE yet");
|
|
|
|
}
|
2016-04-29 03:56:37 +03:00
|
|
|
MOZ_ASSERT(aParentContext);
|
|
|
|
MOZ_ASSERT(aType < CSSPseudoElementType::Count);
|
|
|
|
nsIAtom* pseudoTag = nsCSSPseudoElements::GetPseudoAtom(aType);
|
|
|
|
|
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
2016-08-23 06:14:27 +03:00
|
|
|
Servo_ComputedValues_GetForPseudoElement(
|
2016-04-29 03:56:37 +03:00
|
|
|
aParentContext->StyleSource().AsServoComputedValues(),
|
2016-08-16 08:08:46 +03:00
|
|
|
aParentElement, pseudoTag, mRawSet.get(), /* is_probe = */ false).Consume();
|
2016-04-29 03:56:37 +03:00
|
|
|
MOZ_ASSERT(computedValues);
|
|
|
|
|
|
|
|
return GetContext(computedValues.forget(), aParentContext, pseudoTag, aType);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// aFlags is an nsStyleSet flags bitfield
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ResolveAnonymousBoxStyle(nsIAtom* aPseudoTag,
|
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
uint32_t aFlags)
|
|
|
|
{
|
2016-02-26 04:51:02 +03:00
|
|
|
MOZ_ASSERT(nsCSSAnonBoxes::IsAnonBox(aPseudoTag));
|
|
|
|
|
|
|
|
MOZ_ASSERT(aFlags == 0 ||
|
|
|
|
aFlags == nsStyleSet::eSkipParentDisplayBasedStyleFixup);
|
2016-03-18 23:14:07 +03:00
|
|
|
bool skipFixup = aFlags & nsStyleSet::eSkipParentDisplayBasedStyleFixup;
|
|
|
|
|
2016-10-18 07:29:03 +03:00
|
|
|
const ServoComputedValues* parentStyle =
|
2016-03-18 23:14:07 +03:00
|
|
|
aParentContext ? aParentContext->StyleSource().AsServoComputedValues()
|
|
|
|
: nullptr;
|
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
2016-08-23 06:14:27 +03:00
|
|
|
Servo_ComputedValues_GetForAnonymousBox(parentStyle, aPseudoTag,
|
|
|
|
mRawSet.get()).Consume();
|
2016-07-28 06:03:49 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
if (!computedValues) {
|
|
|
|
nsString pseudo;
|
|
|
|
aPseudoTag->ToString(pseudo);
|
|
|
|
NS_ERROR(nsPrintfCString("stylo: could not get anon-box: %s",
|
|
|
|
NS_ConvertUTF16toUTF8(pseudo).get()).get());
|
|
|
|
MOZ_CRASH();
|
|
|
|
}
|
|
|
|
#endif
|
2016-03-18 23:14:07 +03:00
|
|
|
|
2016-05-05 05:33:00 +03:00
|
|
|
return NS_NewStyleContext(aParentContext, mPresContext, aPseudoTag,
|
2016-03-18 23:14:07 +03:00
|
|
|
CSSPseudoElementType::AnonBox,
|
|
|
|
computedValues.forget(), skipFixup);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// manage the set of style sheets in the style set
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::AppendStyleSheet(SheetType aType,
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSheet* aSheet)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-02-26 04:51:02 +03:00
|
|
|
MOZ_ASSERT(aSheet);
|
|
|
|
MOZ_ASSERT(aSheet->IsApplicable());
|
|
|
|
MOZ_ASSERT(nsStyleSet::IsCSSSheetType(aType));
|
|
|
|
|
|
|
|
mSheets[aType].RemoveElement(aSheet);
|
|
|
|
mSheets[aType].AppendElement(aSheet);
|
|
|
|
|
2016-02-26 05:57:42 +03:00
|
|
|
// Maintain a mirrored list of sheets on the servo side.
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_AppendStyleSheet(mRawSet.get(), aSheet->RawSheet());
|
2016-02-26 05:57:42 +03:00
|
|
|
|
2016-02-26 04:51:02 +03:00
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::PrependStyleSheet(SheetType aType,
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSheet* aSheet)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-02-26 04:51:02 +03:00
|
|
|
MOZ_ASSERT(aSheet);
|
|
|
|
MOZ_ASSERT(aSheet->IsApplicable());
|
|
|
|
MOZ_ASSERT(nsStyleSet::IsCSSSheetType(aType));
|
|
|
|
|
|
|
|
mSheets[aType].RemoveElement(aSheet);
|
|
|
|
mSheets[aType].InsertElementAt(0, aSheet);
|
|
|
|
|
2016-02-26 05:57:42 +03:00
|
|
|
// Maintain a mirrored list of sheets on the servo side.
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_PrependStyleSheet(mRawSet.get(), aSheet->RawSheet());
|
2016-02-26 05:57:42 +03:00
|
|
|
|
2016-02-26 04:51:02 +03:00
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::RemoveStyleSheet(SheetType aType,
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSheet* aSheet)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-02-26 05:57:42 +03:00
|
|
|
MOZ_ASSERT(aSheet);
|
|
|
|
MOZ_ASSERT(aSheet->IsApplicable());
|
|
|
|
MOZ_ASSERT(nsStyleSet::IsCSSSheetType(aType));
|
|
|
|
|
|
|
|
mSheets[aType].RemoveElement(aSheet);
|
|
|
|
|
|
|
|
// Maintain a mirrored list of sheets on the servo side.
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_RemoveStyleSheet(mRawSet.get(), aSheet->RawSheet());
|
2016-02-26 05:57:42 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::ReplaceSheets(SheetType aType,
|
2016-02-24 10:01:12 +03:00
|
|
|
const nsTArray<RefPtr<ServoStyleSheet>>& aNewSheets)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-08-03 07:08:01 +03:00
|
|
|
// Gecko uses a two-dimensional array keyed by sheet type, whereas Servo
|
|
|
|
// stores a flattened list. This makes ReplaceSheets a pretty clunky thing
|
|
|
|
// to express. If the need ever arises, we can easily make this more efficent,
|
|
|
|
// probably by aligning the representations better between engines.
|
|
|
|
|
|
|
|
for (ServoStyleSheet* sheet : mSheets[aType]) {
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_RemoveStyleSheet(mRawSet.get(), sheet->RawSheet());
|
2016-08-03 07:08:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
mSheets[aType].Clear();
|
|
|
|
mSheets[aType].AppendElements(aNewSheets);
|
|
|
|
|
|
|
|
for (ServoStyleSheet* sheet : mSheets[aType]) {
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_AppendStyleSheet(mRawSet.get(), sheet->RawSheet());
|
2016-08-03 07:08:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ServoStyleSet::InsertStyleSheetBefore(SheetType aType,
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSheet* aNewSheet,
|
|
|
|
ServoStyleSheet* aReferenceSheet)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-04-29 07:01:44 +03:00
|
|
|
MOZ_ASSERT(aNewSheet);
|
|
|
|
MOZ_ASSERT(aReferenceSheet);
|
|
|
|
MOZ_ASSERT(aNewSheet->IsApplicable());
|
|
|
|
|
|
|
|
mSheets[aType].RemoveElement(aNewSheet);
|
|
|
|
size_t idx = mSheets[aType].IndexOf(aReferenceSheet);
|
|
|
|
if (idx == mSheets[aType].NoIndex) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
mSheets[aType].InsertElementAt(idx, aNewSheet);
|
|
|
|
|
|
|
|
// Maintain a mirrored list of sheets on the servo side.
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_InsertStyleSheetBefore(mRawSet.get(), aNewSheet->RawSheet(),
|
|
|
|
aReferenceSheet->RawSheet());
|
2016-04-29 07:01:44 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
ServoStyleSet::SheetCount(SheetType aType) const
|
|
|
|
{
|
2016-02-26 04:51:02 +03:00
|
|
|
MOZ_ASSERT(nsStyleSet::IsCSSSheetType(aType));
|
|
|
|
return mSheets[aType].Length();
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSheet*
|
2016-02-24 10:01:10 +03:00
|
|
|
ServoStyleSet::StyleSheetAt(SheetType aType,
|
|
|
|
int32_t aIndex) const
|
|
|
|
{
|
2016-02-26 04:51:02 +03:00
|
|
|
MOZ_ASSERT(nsStyleSet::IsCSSSheetType(aType));
|
|
|
|
return mSheets[aType][aIndex];
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSet::RemoveDocStyleSheet(ServoStyleSheet* aSheet)
|
2016-02-24 10:01:10 +03:00
|
|
|
{
|
2016-04-29 07:01:44 +03:00
|
|
|
return RemoveStyleSheet(SheetType::Doc, aSheet);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2016-02-24 10:01:12 +03:00
|
|
|
ServoStyleSet::AddDocStyleSheet(ServoStyleSheet* aSheet,
|
2016-02-24 10:01:10 +03:00
|
|
|
nsIDocument* aDocument)
|
|
|
|
{
|
2016-09-26 15:03:25 +03:00
|
|
|
RefPtr<StyleSheet> strong(aSheet);
|
2016-04-29 07:01:44 +03:00
|
|
|
|
|
|
|
mSheets[SheetType::Doc].RemoveElement(aSheet);
|
|
|
|
|
|
|
|
size_t index =
|
|
|
|
aDocument->FindDocStyleSheetInsertionPoint(mSheets[SheetType::Doc], aSheet);
|
|
|
|
mSheets[SheetType::Doc].InsertElementAt(index, aSheet);
|
|
|
|
|
|
|
|
// Maintain a mirrored list of sheets on the servo side.
|
|
|
|
ServoStyleSheet* followingSheet =
|
|
|
|
mSheets[SheetType::Doc].SafeElementAt(index + 1);
|
|
|
|
if (followingSheet) {
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_InsertStyleSheetBefore(mRawSet.get(), aSheet->RawSheet(),
|
|
|
|
followingSheet->RawSheet());
|
2016-04-29 07:01:44 +03:00
|
|
|
} else {
|
2016-08-23 06:10:49 +03:00
|
|
|
Servo_StyleSet_AppendStyleSheet(mRawSet.get(), aSheet->RawSheet());
|
2016-04-29 07:01:44 +03:00
|
|
|
}
|
|
|
|
|
2016-02-26 05:57:42 +03:00
|
|
|
return NS_OK;
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ProbePseudoElementStyle(Element* aParentElement,
|
|
|
|
CSSPseudoElementType aType,
|
|
|
|
nsStyleContext* aParentContext)
|
|
|
|
{
|
2016-04-29 03:56:37 +03:00
|
|
|
MOZ_ASSERT(aParentContext);
|
|
|
|
MOZ_ASSERT(aType < CSSPseudoElementType::Count);
|
|
|
|
nsIAtom* pseudoTag = nsCSSPseudoElements::GetPseudoAtom(aType);
|
|
|
|
|
|
|
|
RefPtr<ServoComputedValues> computedValues =
|
2016-08-23 06:14:27 +03:00
|
|
|
Servo_ComputedValues_GetForPseudoElement(
|
2016-04-29 03:56:37 +03:00
|
|
|
aParentContext->StyleSource().AsServoComputedValues(),
|
2016-08-16 08:08:46 +03:00
|
|
|
aParentElement, pseudoTag, mRawSet.get(), /* is_probe = */ true).Consume();
|
2016-04-29 03:56:37 +03:00
|
|
|
|
|
|
|
if (!computedValues) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For :before and :after pseudo-elements, having display: none or no
|
|
|
|
// 'content' property is equivalent to not having the pseudo-element
|
|
|
|
// at all.
|
|
|
|
if (computedValues &&
|
|
|
|
(pseudoTag == nsCSSPseudoElements::before ||
|
|
|
|
pseudoTag == nsCSSPseudoElements::after)) {
|
|
|
|
const nsStyleDisplay *display = Servo_GetStyleDisplay(computedValues);
|
|
|
|
const nsStyleContent *content = Servo_GetStyleContent(computedValues);
|
|
|
|
// XXXldb What is contentCount for |content: ""|?
|
2016-09-03 21:46:58 +03:00
|
|
|
if (display->mDisplay == StyleDisplay::None ||
|
2016-04-29 03:56:37 +03:00
|
|
|
content->ContentCount() == 0) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetContext(computedValues.forget(), aParentContext, pseudoTag, aType);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsStyleContext>
|
|
|
|
ServoStyleSet::ProbePseudoElementStyle(Element* aParentElement,
|
|
|
|
CSSPseudoElementType aType,
|
|
|
|
nsStyleContext* aParentContext,
|
|
|
|
TreeMatchContext& aTreeMatchContext,
|
|
|
|
Element* aPseudoElement)
|
|
|
|
{
|
2016-05-05 03:59:10 +03:00
|
|
|
if (aPseudoElement) {
|
|
|
|
NS_ERROR("stylo: We don't support CSS_PSEUDO_ELEMENT_SUPPORTS_USER_ACTION_STATE yet");
|
|
|
|
}
|
2016-04-29 03:56:37 +03:00
|
|
|
return ProbePseudoElementStyle(aParentElement, aType, aParentContext);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRestyleHint
|
|
|
|
ServoStyleSet::HasStateDependentStyle(dom::Element* aElement,
|
|
|
|
EventStates aStateMask)
|
|
|
|
{
|
2016-07-29 01:22:54 +03:00
|
|
|
NS_WARNING("stylo: HasStateDependentStyle always returns zero!");
|
2016-07-14 00:37:56 +03:00
|
|
|
return nsRestyleHint(0);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRestyleHint
|
|
|
|
ServoStyleSet::HasStateDependentStyle(dom::Element* aElement,
|
|
|
|
CSSPseudoElementType aPseudoType,
|
|
|
|
dom::Element* aPseudoElement,
|
|
|
|
EventStates aStateMask)
|
|
|
|
{
|
2016-07-29 01:22:54 +03:00
|
|
|
NS_WARNING("stylo: HasStateDependentStyle always returns zero!");
|
2016-07-14 00:37:56 +03:00
|
|
|
return nsRestyleHint(0);
|
2016-02-24 10:01:10 +03:00
|
|
|
}
|
2016-05-25 09:55:49 +03:00
|
|
|
|
2016-08-12 00:12:49 +03:00
|
|
|
void
|
2016-11-02 09:11:24 +03:00
|
|
|
ServoStyleSet::StyleDocument()
|
2016-08-12 00:12:49 +03:00
|
|
|
{
|
2016-12-01 11:19:50 +03:00
|
|
|
// Restyle the document from the root element and each of the document level
|
|
|
|
// NAC subtree roots.
|
|
|
|
DocumentStyleRootIterator iter(mPresContext->Document());
|
|
|
|
while (Element* root = iter.GetNextStyleRoot()) {
|
|
|
|
if (root->ShouldTraverseForServo()) {
|
|
|
|
Servo_TraverseSubtree(root, mRawSet.get(), SkipRootBehavior::DontSkip);
|
|
|
|
}
|
|
|
|
}
|
2016-08-12 00:12:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ServoStyleSet::StyleNewSubtree(nsIContent* aContent)
|
|
|
|
{
|
2016-11-02 09:11:24 +03:00
|
|
|
if (aContent->IsElement()) {
|
|
|
|
Servo_TraverseSubtree(aContent->AsElement(), mRawSet.get(), SkipRootBehavior::DontSkip);
|
2016-09-01 00:33:46 +03:00
|
|
|
}
|
2016-08-12 00:12:49 +03:00
|
|
|
}
|
|
|
|
|
2016-05-25 09:55:49 +03:00
|
|
|
void
|
2016-08-12 00:12:49 +03:00
|
|
|
ServoStyleSet::StyleNewChildren(nsIContent* aParent)
|
2016-05-25 09:55:49 +03:00
|
|
|
{
|
2016-11-02 09:11:24 +03:00
|
|
|
MOZ_ASSERT(aParent->IsElement());
|
|
|
|
Servo_TraverseSubtree(aParent->AsElement(), mRawSet.get(), SkipRootBehavior::Skip);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
ServoStyleSet::AssertTreeIsClean()
|
|
|
|
{
|
|
|
|
if (Element* root = mPresContext->Document()->GetRootElement()) {
|
|
|
|
Servo_AssertTreeIsClean(root);
|
|
|
|
}
|
2016-05-25 09:55:49 +03:00
|
|
|
}
|
2016-11-02 09:11:24 +03:00
|
|
|
#endif
|