2015-11-25 04:14:39 +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/ServoBindings.h"
|
|
|
|
|
2016-08-11 02:56:33 +03:00
|
|
|
#include "ChildIterator.h"
|
2017-04-07 17:44:41 +03:00
|
|
|
#include "GeckoProfiler.h"
|
2016-06-07 22:13:24 +03:00
|
|
|
#include "gfxFontFamilyList.h"
|
2017-03-10 05:53:19 +03:00
|
|
|
#include "nsAnimationManager.h"
|
2016-05-25 21:16:26 +03:00
|
|
|
#include "nsAttrValueInlines.h"
|
2017-02-21 16:21:07 +03:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2017-01-10 03:05:18 +03:00
|
|
|
#include "nsCSSProps.h"
|
2016-12-17 12:58:56 +03:00
|
|
|
#include "nsCSSParser.h"
|
2017-01-24 10:27:56 +03:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "nsCSSRuleProcessor.h"
|
|
|
|
#include "nsContentUtils.h"
|
2016-05-25 21:16:26 +03:00
|
|
|
#include "nsDOMTokenList.h"
|
2016-08-12 07:28:40 +03:00
|
|
|
#include "nsIContentInlines.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIDocument.h"
|
2017-03-26 23:53:34 +03:00
|
|
|
#include "nsIDocumentInlines.h"
|
2016-08-12 05:01:52 +03:00
|
|
|
#include "nsIFrame.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "nsINode.h"
|
2017-02-10 05:42:29 +03:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIPresShellInlines.h"
|
2016-05-21 03:02:54 +03:00
|
|
|
#include "nsIPrincipal.h"
|
2017-04-08 01:49:44 +03:00
|
|
|
#include "nsFontMetrics.h"
|
2017-01-20 02:56:53 +03:00
|
|
|
#include "nsMappedAttributes.h"
|
2017-01-15 01:33:40 +03:00
|
|
|
#include "nsMediaFeatures.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "nsNameSpaceManager.h"
|
2016-12-17 12:58:56 +03:00
|
|
|
#include "nsNetUtil.h"
|
2016-08-22 16:01:41 +03:00
|
|
|
#include "nsRuleNode.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "nsString.h"
|
2016-04-02 03:04:59 +03:00
|
|
|
#include "nsStyleStruct.h"
|
2016-06-30 23:37:52 +03:00
|
|
|
#include "nsStyleUtil.h"
|
2017-03-27 14:49:21 +03:00
|
|
|
#include "nsSVGElement.h"
|
2016-07-19 04:02:55 +03:00
|
|
|
#include "nsTArray.h"
|
2017-04-12 11:33:44 +03:00
|
|
|
#include "nsTransitionManager.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
|
2017-04-10 06:17:51 +03:00
|
|
|
#include "mozilla/DeclarationBlockInlines.h"
|
2017-01-24 10:27:56 +03:00
|
|
|
#include "mozilla/EffectCompositor.h"
|
2017-03-27 13:42:59 +03:00
|
|
|
#include "mozilla/EffectSet.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "mozilla/EventStates.h"
|
2017-01-29 06:58:39 +03:00
|
|
|
#include "mozilla/Keyframe.h"
|
2017-04-08 01:49:44 +03:00
|
|
|
#include "mozilla/Mutex.h"
|
2016-07-19 04:02:55 +03:00
|
|
|
#include "mozilla/ServoElementSnapshot.h"
|
2016-08-12 05:01:52 +03:00
|
|
|
#include "mozilla/ServoRestyleManager.h"
|
2016-11-01 02:30:43 +03:00
|
|
|
#include "mozilla/StyleAnimationValue.h"
|
2017-03-14 16:34:57 +03:00
|
|
|
#include "mozilla/SystemGroup.h"
|
2017-04-10 06:17:51 +03:00
|
|
|
#include "mozilla/ServoMediaList.h"
|
2017-04-26 07:00:11 +03:00
|
|
|
#include "mozilla/ServoComputedValuesWithParent.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
#include "mozilla/dom/Element.h"
|
2016-12-01 21:40:04 +03:00
|
|
|
#include "mozilla/dom/ElementInlines.h"
|
2017-03-26 23:53:34 +03:00
|
|
|
#include "mozilla/dom/HTMLTableCellElement.h"
|
2017-03-26 23:53:34 +03:00
|
|
|
#include "mozilla/dom/HTMLBodyElement.h"
|
2017-03-16 00:49:35 +03:00
|
|
|
#include "mozilla/LookAndFeel.h"
|
2017-04-08 01:49:44 +03:00
|
|
|
#include "mozilla/URLExtraData.h"
|
2015-11-25 04:14:39 +03:00
|
|
|
|
2016-08-12 05:01:52 +03:00
|
|
|
using namespace mozilla;
|
2016-08-11 02:56:33 +03:00
|
|
|
using namespace mozilla::dom;
|
2016-08-12 05:01:52 +03:00
|
|
|
|
2016-11-23 03:35:55 +03:00
|
|
|
#define SERVO_ARC_TYPE(name_, type_) \
|
|
|
|
already_AddRefed<type_> \
|
|
|
|
type_##Strong::Consume() { \
|
|
|
|
RefPtr<type_> result; \
|
|
|
|
result.swap(mPtr); \
|
|
|
|
return result.forget(); \
|
2016-08-23 03:32:20 +03:00
|
|
|
}
|
2016-11-23 03:35:55 +03:00
|
|
|
#include "mozilla/ServoArcTypeList.h"
|
|
|
|
#undef SERVO_ARC_TYPE
|
2016-08-16 08:08:46 +03:00
|
|
|
|
2017-04-19 18:04:38 +03:00
|
|
|
|
|
|
|
static Mutex* sServoFontMetricsLock = nullptr;
|
|
|
|
|
2015-11-25 04:14:39 +03:00
|
|
|
uint32_t
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_ChildrenCount(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->GetChildCount();
|
|
|
|
}
|
|
|
|
|
2016-03-03 07:27:07 +03:00
|
|
|
bool
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_NodeIsElement(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->IsElement();
|
|
|
|
}
|
|
|
|
|
2016-12-29 10:04:32 +03:00
|
|
|
bool
|
|
|
|
Gecko_IsInDocument(RawGeckoNodeBorrowed aNode)
|
|
|
|
{
|
|
|
|
return aNode->IsInComposedDoc();
|
|
|
|
}
|
|
|
|
|
Bug 1353810 - add a --enable-rust-debug option; r=chmanchester
For people working on Rust code, compiling in debug mode (Cargo's "dev"
profile) is convenient: debug assertions are turned on, optimization is
turned off, and parallel compilation inside of rustc itself can be
used. These things make the build faster and the debugging experience
more pleasant.
To obtain that currently, one needs to --enable-debug at the Gecko
toplevel, which turns on debug assertions for the entire browser, which
makes things run unreasonably slowly. So it would be desirable to be
able to turn *off* debug mode for the entirety of the browser, but turn
on debug mode for the Rust code only.
Hence this added switch, --enable-rust-debug, which does what it
suggests and defaults to the value of --enable-debug. For our own
sanity and because we judge it a non-existent use case, we do not
support --enable-debug --disable-rust-debug.
2017-04-13 04:49:25 +03:00
|
|
|
#ifdef MOZ_DEBUG_RUST
|
2017-02-01 23:37:00 +03:00
|
|
|
bool
|
|
|
|
Gecko_FlattenedTreeParentIsParent(RawGeckoNodeBorrowed aNode)
|
|
|
|
{
|
|
|
|
// Servo calls this in debug builds to verify the result of its own
|
|
|
|
// flattened_tree_parent_is_parent() function.
|
|
|
|
return FlattenedTreeParentIsParent<nsIContent::eForStyle>(aNode);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-03-22 19:18:34 +03:00
|
|
|
/*
|
|
|
|
* Does this child count as significant for selector matching?
|
|
|
|
*
|
|
|
|
* See nsStyleUtil::IsSignificantChild for details.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
Gecko_IsSignificantChild(RawGeckoNodeBorrowed aNode, bool aTextIsSignificant,
|
|
|
|
bool aWhitespaceIsSignificant)
|
|
|
|
{
|
|
|
|
return nsStyleUtil::ThreadSafeIsSignificantChild(aNode->AsContent(),
|
|
|
|
aTextIsSignificant,
|
|
|
|
aWhitespaceIsSignificant);
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowedOrNull
|
|
|
|
Gecko_GetParentNode(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
2017-02-01 23:37:00 +03:00
|
|
|
MOZ_ASSERT(!FlattenedTreeParentIsParent<nsIContent::eForStyle>(aNode),
|
|
|
|
"Should have taken the inline path");
|
|
|
|
MOZ_ASSERT(aNode->IsContent(), "Slow path only applies to content");
|
|
|
|
const nsIContent* c = aNode->AsContent();
|
|
|
|
return c->GetFlattenedTreeParentNodeInternal(nsIContent::eForStyle);
|
2015-11-25 04:14:39 +03:00
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowedOrNull
|
|
|
|
Gecko_GetFirstChild(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->GetFirstChild();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowedOrNull
|
|
|
|
Gecko_GetLastChild(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->GetLastChild();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowedOrNull
|
|
|
|
Gecko_GetPrevSibling(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->GetPreviousSibling();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowedOrNull
|
|
|
|
Gecko_GetNextSibling(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetParentElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
2016-12-01 09:55:49 +03:00
|
|
|
return aElement->GetFlattenedTreeParentElementForStyle();
|
2015-11-25 04:14:39 +03:00
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetFirstChildElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aElement->GetFirstElementChild();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull Gecko_GetLastChildElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aElement->GetLastElementChild();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetPrevSiblingElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aElement->GetPreviousElementSibling();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetNextSiblingElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aElement->GetNextElementSibling();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetDocumentElement(RawGeckoDocumentBorrowed aDoc)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aDoc->GetDocumentElement();
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
StyleChildrenIteratorOwnedOrNull
|
|
|
|
Gecko_MaybeCreateStyleChildrenIterator(RawGeckoNodeBorrowed aNode)
|
2016-08-11 02:56:33 +03:00
|
|
|
{
|
|
|
|
if (!aNode->IsElement()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-10-18 07:29:03 +03:00
|
|
|
const Element* el = aNode->AsElement();
|
2016-08-11 02:56:33 +03:00
|
|
|
return StyleChildrenIterator::IsNeeded(el) ? new StyleChildrenIterator(el)
|
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_DropStyleChildrenIterator(StyleChildrenIteratorOwned aIterator)
|
2016-08-11 02:56:33 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIterator);
|
|
|
|
delete aIterator;
|
|
|
|
}
|
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
RawGeckoNodeBorrowed
|
2016-10-18 07:29:03 +03:00
|
|
|
Gecko_GetNextStyleChild(StyleChildrenIteratorBorrowedMut aIterator)
|
2016-08-11 02:56:33 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIterator);
|
|
|
|
return aIterator->GetNextChild();
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
EventStates::ServoType
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_ElementState(RawGeckoElementBorrowed aElement)
|
2016-02-24 04:51:47 +03:00
|
|
|
{
|
2016-07-19 04:02:55 +03:00
|
|
|
return aElement->StyleState().ServoValue();
|
2016-02-24 04:51:47 +03:00
|
|
|
}
|
|
|
|
|
2016-03-03 07:27:07 +03:00
|
|
|
bool
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_IsTextNode(RawGeckoNodeBorrowed aNode)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aNode->NodeInfo()->NodeType() == nsIDOMNode::TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
2016-03-03 07:27:07 +03:00
|
|
|
bool
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_IsRootElement(RawGeckoElementBorrowed aElement)
|
2015-11-25 04:14:39 +03:00
|
|
|
{
|
|
|
|
return aElement->OwnerDoc()->GetRootElement() == aElement;
|
|
|
|
}
|
|
|
|
|
2017-01-06 13:12:08 +03:00
|
|
|
bool
|
|
|
|
Gecko_MatchesElement(CSSPseudoClassType aType,
|
|
|
|
RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
return nsCSSPseudoClasses::MatchesElement(aType, aElement).value();
|
|
|
|
}
|
|
|
|
|
2016-05-18 22:05:36 +03:00
|
|
|
nsIAtom*
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_LocalName(RawGeckoElementBorrowed aElement)
|
2016-05-18 22:05:36 +03:00
|
|
|
{
|
|
|
|
return aElement->NodeInfo()->NameAtom();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_Namespace(RawGeckoElementBorrowed aElement)
|
2016-05-18 22:05:36 +03:00
|
|
|
{
|
|
|
|
int32_t id = aElement->NodeInfo()->NamespaceID();
|
2016-08-06 00:21:54 +03:00
|
|
|
return nsContentUtils::NameSpaceManager()->NameSpaceURIAtomForServo(id);
|
2016-05-18 22:05:36 +03:00
|
|
|
}
|
|
|
|
|
2016-05-25 21:16:26 +03:00
|
|
|
nsIAtom*
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_GetElementId(RawGeckoElementBorrowed aElement)
|
2016-05-25 21:16:26 +03:00
|
|
|
{
|
|
|
|
const nsAttrValue* attr = aElement->GetParsedAttr(nsGkAtoms::id);
|
|
|
|
return attr ? attr->GetAtomValue() : nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-08 10:07:06 +03:00
|
|
|
// Dirtiness tracking.
|
|
|
|
uint32_t
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_GetNodeFlags(RawGeckoNodeBorrowed aNode)
|
2016-07-08 10:07:06 +03:00
|
|
|
{
|
|
|
|
return aNode->GetFlags();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_SetNodeFlags(RawGeckoNodeBorrowed aNode, uint32_t aFlags)
|
2016-07-08 10:07:06 +03:00
|
|
|
{
|
2016-10-18 07:29:03 +03:00
|
|
|
const_cast<nsINode*>(aNode)->SetFlags(aFlags);
|
2016-07-08 10:07:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-23 16:11:02 +03:00
|
|
|
Gecko_UnsetNodeFlags(RawGeckoNodeBorrowed aNode, uint32_t aFlags)
|
2016-07-08 10:07:06 +03:00
|
|
|
{
|
2016-10-18 07:29:03 +03:00
|
|
|
const_cast<nsINode*>(aNode)->UnsetFlags(aFlags);
|
2016-07-08 10:07:06 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 05:42:29 +03:00
|
|
|
void
|
|
|
|
Gecko_SetOwnerDocumentNeedsStyleFlush(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
if (nsIPresShell* shell = aElement->OwnerDoc()->GetShell()) {
|
|
|
|
shell->SetNeedStyleFlush();
|
2017-03-29 17:13:46 +03:00
|
|
|
shell->ObserveStyleFlushes();
|
2017-02-10 05:42:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-29 05:20:45 +03:00
|
|
|
nsStyleContext*
|
2017-04-23 00:12:01 +03:00
|
|
|
Gecko_GetStyleContext(RawGeckoElementBorrowed aElement,
|
|
|
|
nsIAtom* aPseudoTagOrNull)
|
2016-07-29 05:20:45 +03:00
|
|
|
{
|
2016-08-12 05:01:52 +03:00
|
|
|
nsIFrame* relevantFrame =
|
2017-04-23 00:12:01 +03:00
|
|
|
ServoRestyleManager::FrameForPseudoElement(aElement, aPseudoTagOrNull);
|
2017-02-21 16:21:07 +03:00
|
|
|
if (relevantFrame) {
|
|
|
|
return relevantFrame->StyleContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aPseudoTagOrNull) {
|
2016-07-29 05:20:45 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-02-21 16:21:07 +03:00
|
|
|
// FIXME(emilio): Is there a shorter path?
|
|
|
|
nsCSSFrameConstructor* fc =
|
2017-04-23 00:12:01 +03:00
|
|
|
aElement->OwnerDoc()->GetShell()->GetPresContext()->FrameConstructor();
|
2017-02-21 16:21:07 +03:00
|
|
|
|
|
|
|
// NB: This is only called for CalcStyleDifference, and we handle correctly
|
|
|
|
// the display: none case since Servo still has the older style.
|
2017-04-23 00:12:01 +03:00
|
|
|
return fc->GetDisplayContentsStyleFor(aElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
Gecko_GetImplementedPseudo(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
CSSPseudoElementType pseudo = aElement->GetPseudoElementType();
|
|
|
|
if (pseudo == CSSPseudoElementType::NotPseudo)
|
|
|
|
return nullptr;
|
|
|
|
return nsCSSPseudoElements::GetPseudoAtom(pseudo);
|
2016-07-29 05:20:45 +03:00
|
|
|
}
|
|
|
|
|
2016-07-27 00:22:57 +03:00
|
|
|
nsChangeHint
|
2016-07-29 05:20:45 +03:00
|
|
|
Gecko_CalcStyleDifference(nsStyleContext* aOldStyleContext,
|
2016-08-16 08:10:05 +03:00
|
|
|
ServoComputedValuesBorrowed aComputedValues)
|
2016-07-27 00:22:57 +03:00
|
|
|
{
|
2016-07-29 05:20:45 +03:00
|
|
|
MOZ_ASSERT(aOldStyleContext);
|
|
|
|
MOZ_ASSERT(aComputedValues);
|
2016-07-27 00:22:57 +03:00
|
|
|
|
|
|
|
// Eventually, we should compute things out of these flags like
|
|
|
|
// ElementRestyler::RestyleSelf does and pass the result to the caller to
|
|
|
|
// potentially halt traversal. See bug 1289868.
|
|
|
|
uint32_t equalStructs, samePointerStructs;
|
|
|
|
nsChangeHint result =
|
2016-07-29 05:20:45 +03:00
|
|
|
aOldStyleContext->CalcStyleDifference(aComputedValues,
|
|
|
|
&equalStructs,
|
|
|
|
&samePointerStructs);
|
|
|
|
|
2016-07-27 00:22:57 +03:00
|
|
|
return result;
|
2016-07-29 05:20:45 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 06:36:57 +03:00
|
|
|
nsChangeHint
|
|
|
|
Gecko_HintsHandledForDescendants(nsChangeHint aHint)
|
|
|
|
{
|
|
|
|
return aHint & ~NS_HintsNotHandledForDescendantsIn(aHint);
|
|
|
|
}
|
|
|
|
|
2016-11-02 09:11:24 +03:00
|
|
|
ServoElementSnapshotOwned
|
|
|
|
Gecko_CreateElementSnapshot(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
2017-01-05 02:05:54 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2016-11-02 09:11:24 +03:00
|
|
|
return new ServoElementSnapshot(aElement);
|
|
|
|
}
|
2016-08-25 01:38:49 +03:00
|
|
|
|
2016-11-02 09:11:24 +03:00
|
|
|
void
|
|
|
|
Gecko_DropElementSnapshot(ServoElementSnapshotOwned aSnapshot)
|
|
|
|
{
|
2017-01-05 02:05:54 +03:00
|
|
|
// Proxy deletes have a lot of overhead, so Servo tries hard to only drop
|
|
|
|
// snapshots on the main thread. However, there are certain cases where
|
|
|
|
// it's unavoidable (i.e. synchronously dropping the style data for the
|
|
|
|
// descendants of a new display:none root).
|
|
|
|
if (MOZ_UNLIKELY(!NS_IsMainThread())) {
|
|
|
|
nsCOMPtr<nsIRunnable> task = NS_NewRunnableFunction([=]() { delete aSnapshot; });
|
2017-03-14 16:34:57 +03:00
|
|
|
SystemGroup::Dispatch("Gecko_DropElementSnapshot", TaskCategory::Other,
|
|
|
|
task.forget());
|
2017-01-05 02:05:54 +03:00
|
|
|
} else {
|
|
|
|
delete aSnapshot;
|
|
|
|
}
|
2016-07-27 00:22:57 +03:00
|
|
|
}
|
|
|
|
|
2017-04-27 12:54:26 +03:00
|
|
|
RawServoDeclarationBlockStrongBorrowedOrNull
|
|
|
|
Gecko_GetStyleAttrDeclarationBlock(RawGeckoElementBorrowed aElement)
|
2016-07-19 04:02:55 +03:00
|
|
|
{
|
2017-04-27 12:54:26 +03:00
|
|
|
DeclarationBlock* decl = aElement->GetInlineStyleDeclaration();
|
2016-10-18 07:29:03 +03:00
|
|
|
if (!decl) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (decl->IsGecko()) {
|
2017-01-12 03:03:16 +03:00
|
|
|
// XXX This can happen when nodes are adopted from a Gecko-style-backend
|
|
|
|
// document into a Servo-style-backend document. See bug 1330051.
|
2016-10-18 07:29:03 +03:00
|
|
|
NS_WARNING("stylo: requesting a Gecko declaration block?");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-02-23 04:19:04 +03:00
|
|
|
return decl->AsServo()->RefRawStrong();
|
2016-07-19 04:02:55 +03:00
|
|
|
}
|
|
|
|
|
2017-04-27 05:09:55 +03:00
|
|
|
RawServoDeclarationBlockStrongBorrowedOrNull
|
|
|
|
Gecko_GetSMILOverrideDeclarationBlock(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
2017-04-27 12:54:26 +03:00
|
|
|
// This function duplicates a lot of the code in
|
|
|
|
// Gecko_GetStyleAttrDeclarationBlock above because I haven't worked out a way
|
|
|
|
// to persuade hazard analysis that a pointer-to-lambda is ok yet.
|
|
|
|
MOZ_ASSERT(aElement, "Invalid GeckoElement");
|
|
|
|
|
|
|
|
DeclarationBlock* decl =
|
|
|
|
const_cast<dom::Element*>(aElement)->GetSMILOverrideStyleDeclaration();
|
|
|
|
if (!decl) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (decl->IsGecko()) {
|
|
|
|
// XXX This can happen when nodes are adopted from a Gecko-style-backend
|
|
|
|
// document into a Servo-style-backend document. See bug 1330051.
|
|
|
|
NS_WARNING("stylo: requesting a Gecko declaration block?");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return decl->AsServo()->RefRawStrong();
|
2017-04-27 05:09:55 +03:00
|
|
|
}
|
|
|
|
|
2017-01-20 02:56:53 +03:00
|
|
|
RawServoDeclarationBlockStrongBorrowedOrNull
|
|
|
|
Gecko_GetHTMLPresentationAttrDeclarationBlock(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
static_assert(sizeof(RefPtr<RawServoDeclarationBlock>) ==
|
|
|
|
sizeof(RawServoDeclarationBlockStrong),
|
|
|
|
"RefPtr should just be a pointer");
|
|
|
|
const nsMappedAttributes* attrs = aElement->GetMappedAttributes();
|
|
|
|
if (!attrs) {
|
2017-02-23 04:19:04 +03:00
|
|
|
auto* svg = nsSVGElement::FromContentOrNull(aElement);
|
2017-02-23 04:19:04 +03:00
|
|
|
if (svg) {
|
|
|
|
if (auto decl = svg->GetContentDeclarationBlock()) {
|
|
|
|
return decl->AsServo()->RefRawStrong();
|
|
|
|
}
|
|
|
|
}
|
2017-01-20 02:56:53 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const RefPtr<RawServoDeclarationBlock>& servo = attrs->GetServoStyle();
|
|
|
|
return reinterpret_cast<const RawServoDeclarationBlockStrong*>(&servo);
|
|
|
|
}
|
|
|
|
|
2017-03-26 23:53:34 +03:00
|
|
|
RawServoDeclarationBlockStrongBorrowedOrNull
|
|
|
|
Gecko_GetExtraContentStyleDeclarations(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
static_assert(sizeof(RefPtr<RawServoDeclarationBlock>) ==
|
|
|
|
sizeof(RawServoDeclarationBlockStrong),
|
|
|
|
"RefPtr should just be a pointer");
|
|
|
|
if (!aElement->IsAnyOfHTMLElements(nsGkAtoms::td, nsGkAtoms::th)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
const HTMLTableCellElement* cell = static_cast<const HTMLTableCellElement*>(aElement);
|
|
|
|
if (nsMappedAttributes* attrs = cell->GetMappedAttributesInheritedFromTable()) {
|
|
|
|
const RefPtr<RawServoDeclarationBlock>& servo = attrs->GetServoStyle();
|
|
|
|
return reinterpret_cast<const RawServoDeclarationBlockStrong*>(&servo);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-23 00:12:01 +03:00
|
|
|
static nsIAtom*
|
|
|
|
PseudoTagAndCorrectElementForAnimation(const Element*& aElementOrPseudo) {
|
|
|
|
if (aElementOrPseudo->IsGeneratedContentContainerForBefore()) {
|
|
|
|
aElementOrPseudo = aElementOrPseudo->GetParent()->AsElement();
|
|
|
|
return nsCSSPseudoElements::before;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aElementOrPseudo->IsGeneratedContentContainerForAfter()) {
|
|
|
|
aElementOrPseudo = aElementOrPseudo->GetParent()->AsElement();
|
|
|
|
return nsCSSPseudoElements::after;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-03-17 07:23:21 +03:00
|
|
|
bool
|
2017-01-24 10:27:56 +03:00
|
|
|
Gecko_GetAnimationRule(RawGeckoElementBorrowed aElement,
|
2017-03-17 07:23:21 +03:00
|
|
|
EffectCompositor::CascadeLevel aCascadeLevel,
|
2017-05-01 12:45:41 +03:00
|
|
|
RawServoAnimationValueMapBorrowedMut aAnimationValues)
|
2017-01-24 10:27:56 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
MOZ_ASSERT(aElement);
|
2017-01-24 10:27:56 +03:00
|
|
|
|
|
|
|
nsIDocument* doc = aElement->GetComposedDoc();
|
|
|
|
if (!doc || !doc->GetShell()) {
|
2017-03-17 07:23:21 +03:00
|
|
|
return false;
|
2017-01-24 10:27:56 +03:00
|
|
|
}
|
|
|
|
nsPresContext* presContext = doc->GetShell()->GetPresContext();
|
2017-03-17 06:48:34 +03:00
|
|
|
if (!presContext || !presContext->IsDynamic()) {
|
|
|
|
// For print or print preview, ignore animations.
|
2017-03-17 07:23:21 +03:00
|
|
|
return false;
|
2017-01-24 10:27:56 +03:00
|
|
|
}
|
|
|
|
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
|
|
|
|
2017-01-24 10:27:56 +03:00
|
|
|
CSSPseudoElementType pseudoType =
|
2017-03-17 06:48:15 +03:00
|
|
|
nsCSSPseudoElements::GetPseudoType(
|
2017-04-23 00:12:01 +03:00
|
|
|
pseudoTag,
|
2017-03-17 06:48:15 +03:00
|
|
|
nsCSSProps::EnabledState::eIgnoreEnabledState);
|
2017-01-24 10:27:56 +03:00
|
|
|
|
2017-03-17 07:23:21 +03:00
|
|
|
return presContext->EffectCompositor()
|
2017-04-23 00:12:01 +03:00
|
|
|
->GetServoAnimationRule(aElement,
|
|
|
|
pseudoType,
|
2017-03-17 07:23:21 +03:00
|
|
|
aCascadeLevel,
|
|
|
|
aAnimationValues);
|
2017-01-24 10:27:56 +03:00
|
|
|
}
|
|
|
|
|
2017-03-10 05:53:17 +03:00
|
|
|
bool
|
|
|
|
Gecko_StyleAnimationsEquals(RawGeckoStyleAnimationListBorrowed aA,
|
|
|
|
RawGeckoStyleAnimationListBorrowed aB)
|
|
|
|
{
|
|
|
|
return *aA == *aB;
|
|
|
|
}
|
|
|
|
|
2017-03-10 05:53:19 +03:00
|
|
|
void
|
|
|
|
Gecko_UpdateAnimations(RawGeckoElementBorrowed aElement,
|
2017-04-12 11:33:44 +03:00
|
|
|
ServoComputedValuesBorrowedOrNull aOldComputedValues,
|
2017-03-10 05:53:19 +03:00
|
|
|
ServoComputedValuesBorrowedOrNull aComputedValues,
|
2017-03-27 13:43:16 +03:00
|
|
|
ServoComputedValuesBorrowedOrNull aParentComputedValues,
|
2017-04-25 06:24:51 +03:00
|
|
|
UpdateAnimationsTasks aTasks)
|
2017-03-10 05:53:19 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aElement);
|
|
|
|
|
|
|
|
nsPresContext* presContext = nsContentUtils::GetContextForContent(aElement);
|
|
|
|
if (!presContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-03-10 05:53:19 +03:00
|
|
|
if (presContext->IsDynamic() && aElement->IsInComposedDoc()) {
|
2017-03-27 13:43:09 +03:00
|
|
|
const ServoComputedValuesWithParent servoValues =
|
|
|
|
{ aComputedValues, aParentComputedValues };
|
2017-03-27 13:43:13 +03:00
|
|
|
CSSPseudoElementType pseudoType =
|
2017-04-23 00:12:01 +03:00
|
|
|
nsCSSPseudoElements::GetPseudoType(pseudoTag,
|
2017-03-27 13:43:13 +03:00
|
|
|
CSSEnabledState::eForAllContent);
|
2017-03-27 13:43:09 +03:00
|
|
|
|
2017-04-25 06:24:51 +03:00
|
|
|
if (aTasks & UpdateAnimationsTasks::CSSAnimations) {
|
2017-03-27 13:43:16 +03:00
|
|
|
presContext->AnimationManager()->
|
|
|
|
UpdateAnimations(const_cast<dom::Element*>(aElement), pseudoType,
|
|
|
|
servoValues);
|
|
|
|
}
|
2017-04-25 05:29:43 +03:00
|
|
|
|
|
|
|
// aComputedValues might be nullptr if the target element is now in a
|
|
|
|
// display:none subtree. We still call Gecko_UpdateAnimations in this case
|
|
|
|
// because we need to stop CSS animations in the display:none subtree.
|
|
|
|
// However, we don't need to update transitions since they are stopped by
|
|
|
|
// RestyleManager::AnimationsWithDestroyedFrame so we just return early
|
|
|
|
// here.
|
|
|
|
if (!aComputedValues) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-25 06:24:51 +03:00
|
|
|
if (aTasks & UpdateAnimationsTasks::CSSTransitions) {
|
2017-04-12 11:33:44 +03:00
|
|
|
MOZ_ASSERT(aOldComputedValues);
|
|
|
|
const ServoComputedValuesWithParent oldServoValues =
|
|
|
|
{ aOldComputedValues, nullptr };
|
|
|
|
presContext->TransitionManager()->
|
|
|
|
UpdateTransitions(const_cast<dom::Element*>(aElement), pseudoType,
|
|
|
|
oldServoValues, servoValues);
|
|
|
|
}
|
2017-04-25 06:24:51 +03:00
|
|
|
if (aTasks & UpdateAnimationsTasks::EffectProperties) {
|
2017-03-27 13:43:20 +03:00
|
|
|
presContext->EffectCompositor()->UpdateEffectProperties(
|
|
|
|
servoValues, const_cast<dom::Element*>(aElement), pseudoType);
|
|
|
|
}
|
2017-03-10 05:53:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-27 13:42:59 +03:00
|
|
|
bool
|
2017-04-23 00:12:01 +03:00
|
|
|
Gecko_ElementHasAnimations(RawGeckoElementBorrowed aElement)
|
2017-03-27 13:42:59 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-03-27 13:42:59 +03:00
|
|
|
CSSPseudoElementType pseudoType =
|
2017-04-23 00:12:01 +03:00
|
|
|
nsCSSPseudoElements::GetPseudoType(pseudoTag,
|
2017-03-27 13:42:59 +03:00
|
|
|
CSSEnabledState::eForAllContent);
|
|
|
|
|
|
|
|
return !!EffectSet::GetEffectSet(aElement, pseudoType);
|
|
|
|
}
|
|
|
|
|
2017-03-10 05:53:19 +03:00
|
|
|
bool
|
2017-04-23 00:12:01 +03:00
|
|
|
Gecko_ElementHasCSSAnimations(RawGeckoElementBorrowed aElement)
|
2017-03-10 05:53:19 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-03-10 05:53:19 +03:00
|
|
|
nsAnimationManager::CSSAnimationCollection* collection =
|
|
|
|
nsAnimationManager::CSSAnimationCollection
|
2017-04-23 00:12:01 +03:00
|
|
|
::GetAnimationCollection(aElement, pseudoTag);
|
2017-03-10 05:53:19 +03:00
|
|
|
|
|
|
|
return collection && !collection->mAnimations.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2017-04-17 09:24:33 +03:00
|
|
|
bool
|
2017-04-23 00:12:01 +03:00
|
|
|
Gecko_ElementHasCSSTransitions(RawGeckoElementBorrowed aElement)
|
2017-04-17 09:24:33 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-04-17 09:24:33 +03:00
|
|
|
nsTransitionManager::CSSTransitionCollection* collection =
|
|
|
|
nsTransitionManager::CSSTransitionCollection
|
2017-04-23 00:12:01 +03:00
|
|
|
::GetAnimationCollection(aElement, pseudoTag);
|
2017-04-17 09:24:33 +03:00
|
|
|
|
|
|
|
return collection && !collection->mAnimations.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2017-04-17 09:29:31 +03:00
|
|
|
size_t
|
2017-04-23 00:12:01 +03:00
|
|
|
Gecko_ElementTransitions_Length(RawGeckoElementBorrowed aElement)
|
2017-04-17 09:29:31 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-04-17 09:29:31 +03:00
|
|
|
nsTransitionManager::CSSTransitionCollection* collection =
|
|
|
|
nsTransitionManager::CSSTransitionCollection
|
2017-04-23 00:12:01 +03:00
|
|
|
::GetAnimationCollection(aElement, pseudoTag);
|
2017-04-17 09:29:31 +03:00
|
|
|
|
|
|
|
return collection ? collection->mAnimations.Length() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CSSTransition*
|
2017-04-23 00:12:01 +03:00
|
|
|
GetCurrentTransitionAt(RawGeckoElementBorrowed aElement, size_t aIndex)
|
2017-04-17 09:29:31 +03:00
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
nsIAtom* pseudoTag = PseudoTagAndCorrectElementForAnimation(aElement);
|
2017-04-17 09:29:31 +03:00
|
|
|
nsTransitionManager::CSSTransitionCollection* collection =
|
|
|
|
nsTransitionManager::CSSTransitionCollection
|
2017-04-23 00:12:01 +03:00
|
|
|
::GetAnimationCollection(aElement, pseudoTag);
|
2017-04-17 09:29:31 +03:00
|
|
|
if (!collection) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
nsTArray<RefPtr<CSSTransition>>& transitions = collection->mAnimations;
|
|
|
|
return aIndex < transitions.Length()
|
|
|
|
? transitions[aIndex].get()
|
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSPropertyID
|
|
|
|
Gecko_ElementTransitions_PropertyAt(RawGeckoElementBorrowed aElement,
|
|
|
|
size_t aIndex)
|
|
|
|
{
|
2017-04-23 00:12:01 +03:00
|
|
|
CSSTransition* transition = GetCurrentTransitionAt(aElement, aIndex);
|
2017-04-17 09:29:31 +03:00
|
|
|
return transition ? transition->TransitionProperty()
|
|
|
|
: nsCSSPropertyID::eCSSProperty_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
RawServoAnimationValueBorrowedOrNull
|
|
|
|
Gecko_ElementTransitions_EndValueAt(RawGeckoElementBorrowed aElement,
|
|
|
|
size_t aIndex)
|
|
|
|
{
|
|
|
|
CSSTransition* transition = GetCurrentTransitionAt(aElement,
|
|
|
|
aIndex);
|
|
|
|
return transition ? transition->ToValue().mServo.get() : nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-06 04:34:51 +03:00
|
|
|
double
|
|
|
|
Gecko_GetProgressFromComputedTiming(RawGeckoComputedTimingBorrowed aComputedTiming)
|
|
|
|
{
|
|
|
|
return aComputedTiming->mProgress.Value();
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
Gecko_GetPositionInSegment(RawGeckoAnimationPropertySegmentBorrowed aSegment,
|
|
|
|
double aProgress,
|
|
|
|
ComputedTimingFunction::BeforeFlag aBeforeFlag)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aSegment->mFromKey < aSegment->mToKey,
|
|
|
|
"The segment from key should be less than to key");
|
|
|
|
|
|
|
|
double positionInSegment =
|
|
|
|
(aProgress - aSegment->mFromKey) / (aSegment->mToKey - aSegment->mFromKey);
|
|
|
|
|
|
|
|
return ComputedTimingFunction::GetPortion(aSegment->mTimingFunction,
|
|
|
|
positionInSegment,
|
|
|
|
aBeforeFlag);
|
|
|
|
}
|
|
|
|
|
2017-04-06 04:34:51 +03:00
|
|
|
RawServoAnimationValueBorrowedOrNull
|
|
|
|
Gecko_AnimationGetBaseStyle(void* aBaseStyles, nsCSSPropertyID aProperty)
|
|
|
|
{
|
|
|
|
auto base =
|
|
|
|
static_cast<nsRefPtrHashtable<nsUint32HashKey, RawServoAnimationValue>*>
|
|
|
|
(aBaseStyles);
|
|
|
|
return base->GetWeak(aProperty);
|
|
|
|
}
|
|
|
|
|
2017-04-26 12:41:45 +03:00
|
|
|
void
|
|
|
|
Gecko_StyleTransition_SetUnsupportedProperty(StyleTransition* aTransition,
|
|
|
|
nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
nsCSSPropertyID id =
|
|
|
|
nsCSSProps::LookupProperty(nsDependentAtomString(aAtom),
|
|
|
|
CSSEnabledState::eForAllContent);
|
|
|
|
if (id == eCSSProperty_UNKNOWN || id == eCSSPropertyExtra_variable) {
|
|
|
|
aTransition->SetUnknownProperty(id, aAtom);
|
|
|
|
} else {
|
|
|
|
aTransition->SetProperty(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-22 16:01:41 +03:00
|
|
|
void
|
|
|
|
Gecko_FillAllBackgroundLists(nsStyleImageLayers* aLayers, uint32_t aMaxLen)
|
|
|
|
{
|
|
|
|
nsRuleNode::FillAllBackgroundLists(*aLayers, aMaxLen);
|
|
|
|
}
|
|
|
|
|
2016-09-06 13:20:30 +03:00
|
|
|
void
|
|
|
|
Gecko_FillAllMaskLists(nsStyleImageLayers* aLayers, uint32_t aMaxLen)
|
|
|
|
{
|
|
|
|
nsRuleNode::FillAllMaskLists(*aLayers, aMaxLen);
|
|
|
|
}
|
|
|
|
|
2017-03-26 23:53:34 +03:00
|
|
|
RawGeckoElementBorrowedOrNull
|
|
|
|
Gecko_GetBody(RawGeckoPresContextBorrowed aPresContext)
|
|
|
|
{
|
|
|
|
return aPresContext->Document()->GetBodyElement();
|
|
|
|
}
|
|
|
|
|
2017-03-16 00:49:35 +03:00
|
|
|
nscolor Gecko_GetLookAndFeelSystemColor(int32_t aId,
|
|
|
|
RawGeckoPresContextBorrowed aPresContext)
|
|
|
|
{
|
|
|
|
bool useStandinsForNativeColors = aPresContext && !aPresContext->IsChrome();
|
|
|
|
nscolor result;
|
|
|
|
LookAndFeel::ColorID colorId = static_cast<LookAndFeel::ColorID>(aId);
|
|
|
|
LookAndFeel::GetColor(colorId, useStandinsForNativeColors, &result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-03-17 00:10:22 +03:00
|
|
|
bool
|
|
|
|
Gecko_MatchStringArgPseudo(RawGeckoElementBorrowed aElement,
|
|
|
|
CSSPseudoClassType aType,
|
|
|
|
const char16_t* aIdent,
|
|
|
|
bool* aSetSlowSelectorFlag)
|
|
|
|
{
|
|
|
|
EventStates dummyMask; // mask is never read because we pass aDependence=nullptr
|
|
|
|
return nsCSSRuleProcessor::StringPseudoMatches(aElement, aType, aIdent,
|
|
|
|
aElement->OwnerDoc(), true,
|
2017-04-14 04:28:25 +03:00
|
|
|
dummyMask, aSetSlowSelectorFlag, nullptr);
|
2017-03-17 00:10:22 +03:00
|
|
|
}
|
|
|
|
|
2017-03-26 23:53:34 +03:00
|
|
|
nsIAtom*
|
|
|
|
Gecko_GetXMLLangValue(RawGeckoElementBorrowed aElement)
|
|
|
|
{
|
|
|
|
nsString string;
|
|
|
|
if (aElement->GetAttr(kNameSpaceID_XML, nsGkAtoms::lang, string)) {
|
|
|
|
return NS_Atomize(string).take();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static nsIAtom*
|
|
|
|
AtomAttrValue(Implementor* aElement, nsIAtom* aName)
|
|
|
|
{
|
|
|
|
const nsAttrValue* attr = aElement->GetParsedAttr(aName);
|
|
|
|
return attr ? attr->GetAtomValue() : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Implementor, typename MatchFn>
|
|
|
|
static bool
|
|
|
|
DoMatch(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName, MatchFn aMatch)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
if (aNS) {
|
2016-06-28 17:24:48 +03:00
|
|
|
int32_t ns = nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNS,
|
|
|
|
aElement->IsInChromeDocument());
|
2016-06-30 23:37:52 +03:00
|
|
|
NS_ENSURE_TRUE(ns != kNameSpaceID_Unknown, false);
|
|
|
|
const nsAttrValue* value = aElement->GetParsedAttr(aName, ns);
|
|
|
|
return value && aMatch(value);
|
|
|
|
}
|
|
|
|
// No namespace means any namespace - we have to check them all. :-(
|
2016-07-23 00:11:41 +03:00
|
|
|
BorrowedAttrInfo attrInfo;
|
2016-07-22 05:43:38 +03:00
|
|
|
for (uint32_t i = 0; (attrInfo = aElement->GetAttrInfoAt(i)); ++i) {
|
|
|
|
if (attrInfo.mName->LocalName() != aName) {
|
2016-06-30 23:37:52 +03:00
|
|
|
continue;
|
|
|
|
}
|
2016-07-22 05:43:38 +03:00
|
|
|
if (aMatch(attrInfo.mValue)) {
|
2016-06-30 23:37:52 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
HasAttr(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [](const nsAttrValue* aValue) { return true; };
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
2016-07-19 00:53:45 +03:00
|
|
|
AttrEquals(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName, nsIAtom* aStr,
|
2016-07-19 04:02:55 +03:00
|
|
|
bool aIgnoreCase)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr, aIgnoreCase](const nsAttrValue* aValue) {
|
|
|
|
return aValue->Equals(aStr, aIgnoreCase ? eIgnoreCase : eCaseMatters);
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
AttrDashEquals(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName,
|
2016-07-19 00:53:45 +03:00
|
|
|
nsIAtom* aStr)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr](const nsAttrValue* aValue) {
|
|
|
|
nsAutoString str;
|
|
|
|
aValue->ToString(str);
|
|
|
|
const nsDefaultStringComparator c;
|
|
|
|
return nsStyleUtil::DashMatchCompare(str, nsDependentAtomString(aStr), c);
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
AttrIncludes(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName,
|
2016-07-19 00:53:45 +03:00
|
|
|
nsIAtom* aStr)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr](const nsAttrValue* aValue) {
|
|
|
|
nsAutoString str;
|
|
|
|
aValue->ToString(str);
|
|
|
|
const nsDefaultStringComparator c;
|
|
|
|
return nsStyleUtil::ValueIncludes(str, nsDependentAtomString(aStr), c);
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
AttrHasSubstring(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName,
|
2016-07-19 00:53:45 +03:00
|
|
|
nsIAtom* aStr)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr](const nsAttrValue* aValue) {
|
|
|
|
nsAutoString str;
|
|
|
|
aValue->ToString(str);
|
|
|
|
return FindInReadable(str, nsDependentAtomString(aStr));
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
AttrHasPrefix(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName,
|
2016-07-19 00:53:45 +03:00
|
|
|
nsIAtom* aStr)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr](const nsAttrValue* aValue) {
|
|
|
|
nsAutoString str;
|
|
|
|
aValue->ToString(str);
|
|
|
|
return StringBeginsWith(str, nsDependentAtomString(aStr));
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
template <typename Implementor>
|
|
|
|
static bool
|
|
|
|
AttrHasSuffix(Implementor* aElement, nsIAtom* aNS, nsIAtom* aName,
|
2016-07-19 00:53:45 +03:00
|
|
|
nsIAtom* aStr)
|
2016-06-30 23:37:52 +03:00
|
|
|
{
|
|
|
|
auto match = [aStr](const nsAttrValue* aValue) {
|
|
|
|
nsAutoString str;
|
|
|
|
aValue->ToString(str);
|
|
|
|
return StringEndsWith(str, nsDependentAtomString(aStr));
|
|
|
|
};
|
|
|
|
return DoMatch(aElement, aNS, aName, match);
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
/**
|
|
|
|
* Gets the class or class list (if any) of the implementor. The calling
|
|
|
|
* convention here is rather hairy, and is optimized for getting Servo the
|
|
|
|
* information it needs for hot calls.
|
|
|
|
*
|
|
|
|
* The return value indicates the number of classes. If zero, neither outparam
|
|
|
|
* is valid. If one, the class_ outparam is filled with the atom of the class.
|
|
|
|
* If two or more, the classList outparam is set to point to an array of atoms
|
|
|
|
* representing the class list.
|
|
|
|
*
|
|
|
|
* The array is borrowed and the atoms are not addrefed. These values can be
|
|
|
|
* invalidated by any DOM mutation. Use them in a tight scope.
|
|
|
|
*/
|
|
|
|
template <typename Implementor>
|
|
|
|
static uint32_t
|
|
|
|
ClassOrClassList(Implementor* aElement, nsIAtom** aClass, nsIAtom*** aClassList)
|
2016-05-25 21:16:26 +03:00
|
|
|
{
|
|
|
|
const nsAttrValue* attr = aElement->GetParsedAttr(nsGkAtoms::_class);
|
|
|
|
if (!attr) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For class values with only whitespace, Gecko just stores a string. For the
|
|
|
|
// purposes of the style system, there is no class in this case.
|
|
|
|
if (attr->Type() == nsAttrValue::eString) {
|
|
|
|
MOZ_ASSERT(nsContentUtils::TrimWhitespace<nsContentUtils::IsHTMLWhitespace>(
|
|
|
|
attr->GetStringValue()).IsEmpty());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Single tokens are generally stored as an atom. Check that case.
|
|
|
|
if (attr->Type() == nsAttrValue::eAtom) {
|
|
|
|
*aClass = attr->GetAtomValue();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we should have an atom array. It is likely, but not
|
|
|
|
// guaranteed, that we have two or more elements in the array.
|
|
|
|
MOZ_ASSERT(attr->Type() == nsAttrValue::eAtomArray);
|
|
|
|
nsTArray<nsCOMPtr<nsIAtom>>* atomArray = attr->GetAtomArrayValue();
|
|
|
|
uint32_t length = atomArray->Length();
|
|
|
|
|
|
|
|
// Special case: zero elements.
|
|
|
|
if (length == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special case: one element.
|
|
|
|
if (length == 1) {
|
|
|
|
*aClass = atomArray->ElementAt(0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// General case: Two or more elements.
|
|
|
|
//
|
|
|
|
// Note: We could also expose this array as an array of nsCOMPtrs, since
|
|
|
|
// bindgen knows what those look like, and eliminate the reinterpret_cast.
|
|
|
|
// But it's not obvious that that would be preferable.
|
|
|
|
static_assert(sizeof(nsCOMPtr<nsIAtom>) == sizeof(nsIAtom*), "Bad simplification");
|
|
|
|
static_assert(alignof(nsCOMPtr<nsIAtom>) == alignof(nsIAtom*), "Bad simplification");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom>* elements = atomArray->Elements();
|
|
|
|
nsIAtom** rawElements = reinterpret_cast<nsIAtom**>(elements);
|
|
|
|
*aClassList = rawElements;
|
|
|
|
return atomArray->Length();
|
|
|
|
}
|
|
|
|
|
2016-07-19 04:02:55 +03:00
|
|
|
#define SERVO_IMPL_ELEMENT_ATTR_MATCHING_FUNCTIONS(prefix_, implementor_) \
|
2016-08-23 16:11:02 +03:00
|
|
|
nsIAtom* prefix_##AtomAttrValue(implementor_ aElement, nsIAtom* aName) \
|
2016-07-19 04:02:55 +03:00
|
|
|
{ \
|
|
|
|
return AtomAttrValue(aElement, aName); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##HasAttr(implementor_ aElement, nsIAtom* aNS, nsIAtom* aName) \
|
2016-07-19 04:02:55 +03:00
|
|
|
{ \
|
|
|
|
return HasAttr(aElement, aNS, aName); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrEquals(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr, bool aIgnoreCase) \
|
|
|
|
{ \
|
|
|
|
return AttrEquals(aElement, aNS, aName, aStr, aIgnoreCase); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrDashEquals(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr) \
|
|
|
|
{ \
|
|
|
|
return AttrDashEquals(aElement, aNS, aName, aStr); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrIncludes(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr) \
|
|
|
|
{ \
|
|
|
|
return AttrIncludes(aElement, aNS, aName, aStr); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrHasSubstring(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr) \
|
|
|
|
{ \
|
|
|
|
return AttrHasSubstring(aElement, aNS, aName, aStr); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrHasPrefix(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr) \
|
|
|
|
{ \
|
|
|
|
return AttrHasPrefix(aElement, aNS, aName, aStr); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
bool prefix_##AttrHasSuffix(implementor_ aElement, nsIAtom* aNS, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom* aName, nsIAtom* aStr) \
|
|
|
|
{ \
|
|
|
|
return AttrHasSuffix(aElement, aNS, aName, aStr); \
|
|
|
|
} \
|
2016-08-23 16:11:02 +03:00
|
|
|
uint32_t prefix_##ClassOrClassList(implementor_ aElement, nsIAtom** aClass, \
|
2016-07-19 04:02:55 +03:00
|
|
|
nsIAtom*** aClassList) \
|
|
|
|
{ \
|
|
|
|
return ClassOrClassList(aElement, aClass, aClassList); \
|
2016-06-24 06:35:12 +03:00
|
|
|
}
|
2016-07-19 04:02:55 +03:00
|
|
|
|
2016-08-23 16:11:02 +03:00
|
|
|
SERVO_IMPL_ELEMENT_ATTR_MATCHING_FUNCTIONS(Gecko_, RawGeckoElementBorrowed)
|
2016-11-02 09:11:24 +03:00
|
|
|
SERVO_IMPL_ELEMENT_ATTR_MATCHING_FUNCTIONS(Gecko_Snapshot, const ServoElementSnapshot*)
|
2016-07-19 04:02:55 +03:00
|
|
|
|
|
|
|
#undef SERVO_IMPL_ELEMENT_ATTR_MATCHING_FUNCTIONS
|
2016-06-24 06:35:12 +03:00
|
|
|
|
2016-05-18 22:05:36 +03:00
|
|
|
nsIAtom*
|
|
|
|
Gecko_Atomize(const char* aString, uint32_t aLength)
|
|
|
|
{
|
|
|
|
return NS_Atomize(nsDependentCSubstring(aString, aLength)).take();
|
|
|
|
}
|
|
|
|
|
2017-03-22 06:38:12 +03:00
|
|
|
nsIAtom*
|
|
|
|
Gecko_Atomize16(const nsAString* aString)
|
|
|
|
{
|
|
|
|
return NS_Atomize(*aString).take();
|
|
|
|
}
|
|
|
|
|
2016-05-18 22:05:36 +03:00
|
|
|
void
|
|
|
|
Gecko_AddRefAtom(nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
NS_ADDREF(aAtom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_ReleaseAtom(nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
NS_RELEASE(aAtom);
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint16_t*
|
|
|
|
Gecko_GetAtomAsUTF16(nsIAtom* aAtom, uint32_t* aLength)
|
|
|
|
{
|
|
|
|
static_assert(sizeof(char16_t) == sizeof(uint16_t), "Servo doesn't know what a char16_t is");
|
|
|
|
MOZ_ASSERT(aAtom);
|
|
|
|
*aLength = aAtom->GetLength();
|
|
|
|
|
|
|
|
// We need to manually cast from char16ptr_t to const char16_t* to handle the
|
|
|
|
// MOZ_USE_CHAR16_WRAPPER we use on WIndows.
|
|
|
|
return reinterpret_cast<const uint16_t*>(static_cast<const char16_t*>(aAtom->GetUTF16String()));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Gecko_AtomEqualsUTF8(nsIAtom* aAtom, const char* aString, uint32_t aLength)
|
|
|
|
{
|
|
|
|
// XXXbholley: We should be able to do this without converting, I just can't
|
|
|
|
// find the right thing to call.
|
2016-10-04 11:16:50 +03:00
|
|
|
nsDependentAtomString atomStr(aAtom);
|
2016-05-19 09:54:58 +03:00
|
|
|
NS_ConvertUTF8toUTF16 inStr(nsDependentCSubstring(aString, aLength));
|
2016-05-18 22:05:36 +03:00
|
|
|
return atomStr.Equals(inStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Gecko_AtomEqualsUTF8IgnoreCase(nsIAtom* aAtom, const char* aString, uint32_t aLength)
|
|
|
|
{
|
|
|
|
// XXXbholley: We should be able to do this without converting, I just can't
|
|
|
|
// find the right thing to call.
|
2016-10-04 11:16:50 +03:00
|
|
|
nsDependentAtomString atomStr(aAtom);
|
2016-05-19 09:54:58 +03:00
|
|
|
NS_ConvertUTF8toUTF16 inStr(nsDependentCSubstring(aString, aLength));
|
2016-05-18 22:05:36 +03:00
|
|
|
return nsContentUtils::EqualsIgnoreASCIICase(atomStr, inStr);
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:50:44 +03:00
|
|
|
void
|
|
|
|
Gecko_EnsureMozBorderColors(nsStyleBorder* aBorder)
|
|
|
|
{
|
|
|
|
aBorder->EnsureBorderColors();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Gecko_ClearMozBorderColors(nsStyleBorder* aBorder, mozilla::Side aSide)
|
|
|
|
{
|
|
|
|
aBorder->ClearBorderColors(aSide);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_AppendMozBorderColors(nsStyleBorder* aBorder, mozilla::Side aSide,
|
|
|
|
nscolor aColor)
|
|
|
|
{
|
|
|
|
aBorder->AppendBorderColor(aSide, aColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyMozBorderColors(nsStyleBorder* aDest, const nsStyleBorder* aSrc,
|
|
|
|
mozilla::Side aSide)
|
|
|
|
{
|
|
|
|
if (aSrc->mBorderColors) {
|
|
|
|
aDest->CopyBorderColorsFrom(aSrc->mBorderColors[aSide], aSide);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 22:13:24 +03:00
|
|
|
void
|
|
|
|
Gecko_FontFamilyList_Clear(FontFamilyList* aList) {
|
|
|
|
aList->Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-30 21:15:57 +03:00
|
|
|
Gecko_FontFamilyList_AppendNamed(FontFamilyList* aList, nsIAtom* aName, bool aQuoted)
|
2016-06-07 22:13:24 +03:00
|
|
|
{
|
|
|
|
FontFamilyName family;
|
|
|
|
aName->ToString(family.mName);
|
2017-03-30 21:15:57 +03:00
|
|
|
if (aQuoted) {
|
|
|
|
family.mType = eFamily_named_quoted;
|
|
|
|
}
|
|
|
|
|
2016-06-07 22:13:24 +03:00
|
|
|
aList->Append(family);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_FontFamilyList_AppendGeneric(FontFamilyList* aList, FontFamilyType aType)
|
|
|
|
{
|
|
|
|
aList->Append(FontFamilyName(aType));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyFontFamilyFrom(nsFont* dst, const nsFont* src)
|
|
|
|
{
|
|
|
|
dst->fontlist = src->fontlist;
|
|
|
|
}
|
|
|
|
|
2017-03-22 06:38:12 +03:00
|
|
|
void
|
|
|
|
Gecko_nsFont_InitSystem(nsFont* aDest, int32_t aFontId,
|
|
|
|
const nsStyleFont* aFont, RawGeckoPresContextBorrowed aPresContext)
|
|
|
|
{
|
2017-04-19 18:04:38 +03:00
|
|
|
MutexAutoLock lock(*sServoFontMetricsLock);
|
2017-03-22 06:38:12 +03:00
|
|
|
const nsFont* defaultVariableFont =
|
|
|
|
aPresContext->GetDefaultFont(kPresContext_DefaultVariableFont_ID,
|
|
|
|
aFont->mLanguage);
|
|
|
|
|
|
|
|
// We have passed uninitialized memory to this function,
|
|
|
|
// initialize it. We can't simply return an nsFont because then
|
|
|
|
// we need to know its size beforehand. Servo cannot initialize nsFont
|
|
|
|
// itself, so this will do.
|
|
|
|
nsFont* system = new (aDest) nsFont(*defaultVariableFont);
|
|
|
|
|
2017-04-19 18:04:38 +03:00
|
|
|
MOZ_RELEASE_ASSERT(system);
|
|
|
|
|
|
|
|
*aDest = *defaultVariableFont;
|
2017-03-22 06:38:12 +03:00
|
|
|
LookAndFeel::FontID fontID = static_cast<LookAndFeel::FontID>(aFontId);
|
2017-04-19 18:04:38 +03:00
|
|
|
nsRuleNode::ComputeSystemFont(aDest, fontID, aPresContext, defaultVariableFont);
|
2017-03-22 06:38:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_nsFont_Destroy(nsFont* aDest)
|
|
|
|
{
|
|
|
|
aDest->~nsFont();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-11 11:32:20 +03:00
|
|
|
void
|
|
|
|
Gecko_SetImageOrientation(nsStyleVisibility* aVisibility,
|
|
|
|
double aRadians, bool aFlip)
|
|
|
|
{
|
|
|
|
aVisibility->mImageOrientation =
|
|
|
|
nsStyleImageOrientation::CreateAsAngleAndFlip(aRadians, aFlip);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_SetImageOrientationAsFromImage(nsStyleVisibility* aVisibility)
|
|
|
|
{
|
|
|
|
aVisibility->mImageOrientation = nsStyleImageOrientation::CreateAsFromImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyImageOrientationFrom(nsStyleVisibility* aDst,
|
|
|
|
const nsStyleVisibility* aSrc)
|
|
|
|
{
|
|
|
|
aDst->mImageOrientation = aSrc->mImageOrientation;
|
|
|
|
}
|
|
|
|
|
2016-05-04 03:42:40 +03:00
|
|
|
void
|
|
|
|
Gecko_SetListStyleType(nsStyleList* style_struct, uint32_t type)
|
|
|
|
{
|
|
|
|
// Builtin counter styles are static and use no-op refcounting, and thus are
|
|
|
|
// safe to use off-main-thread.
|
|
|
|
style_struct->SetCounterStyle(CounterStyleManager::GetBuiltinStyle(type));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyListStyleTypeFrom(nsStyleList* dst, const nsStyleList* src)
|
|
|
|
{
|
|
|
|
dst->SetCounterStyle(src->GetCounterStyle());
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
already_AddRefed<css::URLValue>
|
|
|
|
ServoBundledURI::IntoCssUrl()
|
|
|
|
{
|
|
|
|
if (!mURLString) {
|
|
|
|
return nullptr;
|
2016-12-21 02:13:00 +03:00
|
|
|
}
|
|
|
|
|
2017-03-30 10:54:48 +03:00
|
|
|
MOZ_ASSERT(mExtraData->GetReferrer());
|
|
|
|
MOZ_ASSERT(mExtraData->GetPrincipal());
|
2016-05-21 03:02:54 +03:00
|
|
|
|
2017-04-14 01:18:25 +03:00
|
|
|
NS_ConvertUTF8toUTF16 url(reinterpret_cast<const char*>(mURLString),
|
|
|
|
mURLStringLength);
|
2016-05-21 03:02:54 +03:00
|
|
|
|
2017-03-30 10:54:48 +03:00
|
|
|
RefPtr<css::URLValue> urlValue =
|
2017-04-14 01:18:25 +03:00
|
|
|
new css::URLValue(url, do_AddRef(mExtraData));
|
2017-02-10 04:43:52 +03:00
|
|
|
return urlValue.forget();
|
|
|
|
}
|
|
|
|
|
2016-05-27 01:18:09 +03:00
|
|
|
void
|
|
|
|
Gecko_SetNullImageValue(nsStyleImage* aImage)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage);
|
|
|
|
aImage->SetNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_SetGradientImageValue(nsStyleImage* aImage, nsStyleGradient* aGradient)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage);
|
|
|
|
aImage->SetGradientData(aGradient);
|
|
|
|
}
|
|
|
|
|
2016-11-03 04:40:53 +03:00
|
|
|
static already_AddRefed<nsStyleImageRequest>
|
|
|
|
CreateStyleImageRequest(nsStyleImageRequest::Mode aModeFlags,
|
2017-03-13 07:08:29 +03:00
|
|
|
ServoBundledURI aURI)
|
2016-11-02 11:58:32 +03:00
|
|
|
{
|
2017-03-13 07:08:29 +03:00
|
|
|
MOZ_ASSERT(aURI.mURLString);
|
2017-03-30 10:54:48 +03:00
|
|
|
MOZ_ASSERT(aURI.mExtraData->GetReferrer());
|
|
|
|
MOZ_ASSERT(aURI.mExtraData->GetPrincipal());
|
2016-11-02 11:58:32 +03:00
|
|
|
|
2017-04-14 01:18:25 +03:00
|
|
|
NS_ConvertUTF8toUTF16 url(reinterpret_cast<const char*>(aURI.mURLString),
|
|
|
|
aURI.mURLStringLength);
|
2016-11-02 11:58:32 +03:00
|
|
|
|
|
|
|
RefPtr<nsStyleImageRequest> req =
|
2017-04-14 01:18:25 +03:00
|
|
|
new nsStyleImageRequest(aModeFlags, url, do_AddRef(aURI.mExtraData));
|
2016-11-03 04:40:53 +03:00
|
|
|
return req.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-13 07:08:29 +03:00
|
|
|
Gecko_SetUrlImageValue(nsStyleImage* aImage, ServoBundledURI aURI)
|
2016-11-03 04:40:53 +03:00
|
|
|
{
|
|
|
|
RefPtr<nsStyleImageRequest> req =
|
2017-03-13 07:08:29 +03:00
|
|
|
CreateStyleImageRequest(nsStyleImageRequest::Mode::Track, aURI);
|
2016-11-02 11:58:32 +03:00
|
|
|
aImage->SetImageRequest(req.forget());
|
|
|
|
}
|
|
|
|
|
2017-04-09 17:02:35 +03:00
|
|
|
void
|
|
|
|
Gecko_SetImageElement(nsStyleImage* aImage, nsIAtom* aAtom) {
|
|
|
|
MOZ_ASSERT(aImage);
|
|
|
|
aImage->SetElementId(do_AddRef(aAtom));
|
|
|
|
}
|
|
|
|
|
2016-05-27 01:18:09 +03:00
|
|
|
void
|
|
|
|
Gecko_CopyImageValueFrom(nsStyleImage* aImage, const nsStyleImage* aOther)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage);
|
|
|
|
MOZ_ASSERT(aOther);
|
|
|
|
|
|
|
|
*aImage = *aOther;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:48:47 +03:00
|
|
|
void
|
|
|
|
Gecko_InitializeImageCropRect(nsStyleImage* aImage)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage);
|
2017-03-26 20:06:12 +03:00
|
|
|
aImage->SetCropRect(MakeUnique<nsStyleSides>());
|
2017-03-25 21:48:47 +03:00
|
|
|
}
|
|
|
|
|
2016-11-21 09:34:17 +03:00
|
|
|
void
|
|
|
|
Gecko_SetCursorArrayLength(nsStyleUserInterface* aStyleUI, size_t aLen)
|
|
|
|
{
|
|
|
|
aStyleUI->mCursorImages.Clear();
|
|
|
|
aStyleUI->mCursorImages.SetLength(aLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-13 07:08:29 +03:00
|
|
|
Gecko_SetCursorImage(nsCursorImage* aCursor, ServoBundledURI aURI)
|
2016-11-21 09:34:17 +03:00
|
|
|
{
|
|
|
|
aCursor->mImage =
|
2017-03-13 07:08:29 +03:00
|
|
|
CreateStyleImageRequest(nsStyleImageRequest::Mode::Discard, aURI);
|
2016-11-21 09:34:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyCursorArrayFrom(nsStyleUserInterface* aDest,
|
|
|
|
const nsStyleUserInterface* aSrc)
|
|
|
|
{
|
|
|
|
aDest->mCursorImages = aSrc->mCursorImages;
|
|
|
|
}
|
|
|
|
|
2017-03-12 09:40:54 +03:00
|
|
|
void
|
|
|
|
Gecko_SetContentDataImage(nsStyleContentData* aContent, ServoBundledURI aURI)
|
|
|
|
{
|
|
|
|
RefPtr<nsStyleImageRequest> req = CreateStyleImageRequest(nsStyleImageRequest::Mode::Track, aURI);
|
|
|
|
aContent->SetImageRequest(req.forget());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_SetContentDataArray(nsStyleContentData* aContent,
|
|
|
|
nsStyleContentType aType, uint32_t aLen)
|
|
|
|
{
|
2017-03-27 23:22:32 +03:00
|
|
|
nsCSSValue::Array* arr = nsCSSValue::Array::Create(aLen);
|
2017-03-12 09:40:54 +03:00
|
|
|
aContent->SetCounters(aType, arr);
|
|
|
|
}
|
|
|
|
|
2016-05-27 01:18:09 +03:00
|
|
|
nsStyleGradient*
|
|
|
|
Gecko_CreateGradient(uint8_t aShape,
|
|
|
|
uint8_t aSize,
|
|
|
|
bool aRepeating,
|
|
|
|
bool aLegacySyntax,
|
|
|
|
uint32_t aStopCount)
|
|
|
|
{
|
|
|
|
nsStyleGradient* result = new nsStyleGradient();
|
|
|
|
|
|
|
|
result->mShape = aShape;
|
|
|
|
result->mSize = aSize;
|
|
|
|
result->mRepeating = aRepeating;
|
|
|
|
result->mLegacySyntax = aLegacySyntax;
|
|
|
|
|
|
|
|
result->mAngle.SetNoneValue();
|
|
|
|
result->mBgPosX.SetNoneValue();
|
|
|
|
result->mBgPosY.SetNoneValue();
|
|
|
|
result->mRadiusX.SetNoneValue();
|
|
|
|
result->mRadiusY.SetNoneValue();
|
|
|
|
|
|
|
|
nsStyleGradientStop dummyStop;
|
|
|
|
dummyStop.mLocation.SetNoneValue();
|
|
|
|
dummyStop.mColor = NS_RGB(0, 0, 0);
|
|
|
|
dummyStop.mIsInterpolationHint = 0;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < aStopCount; i++) {
|
|
|
|
result->mStops.AppendElement(dummyStop);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-11-03 04:40:53 +03:00
|
|
|
void
|
|
|
|
Gecko_SetListStyleImageNone(nsStyleList* aList)
|
|
|
|
{
|
|
|
|
aList->mListStyleImage = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_SetListStyleImage(nsStyleList* aList,
|
2017-02-10 04:43:52 +03:00
|
|
|
ServoBundledURI aURI)
|
2016-11-03 04:40:53 +03:00
|
|
|
{
|
|
|
|
aList->mListStyleImage =
|
2017-03-13 07:08:29 +03:00
|
|
|
CreateStyleImageRequest(nsStyleImageRequest::Mode(0), aURI);
|
2016-11-03 04:40:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyListStyleImageFrom(nsStyleList* aList, const nsStyleList* aSource)
|
|
|
|
{
|
|
|
|
aList->mListStyleImage = aSource->mListStyleImage;
|
|
|
|
}
|
|
|
|
|
2016-07-14 11:59:37 +03:00
|
|
|
void
|
2016-07-15 18:26:48 +03:00
|
|
|
Gecko_EnsureTArrayCapacity(void* aArray, size_t aCapacity, size_t aElemSize)
|
|
|
|
{
|
2016-08-12 07:54:14 +03:00
|
|
|
auto base =
|
|
|
|
reinterpret_cast<nsTArray_base<nsTArrayInfallibleAllocator,
|
|
|
|
nsTArray_CopyWithMemutils>*>(aArray);
|
|
|
|
|
2016-07-14 11:59:37 +03:00
|
|
|
base->EnsureCapacity<nsTArrayInfallibleAllocator>(aCapacity, aElemSize);
|
|
|
|
}
|
|
|
|
|
2016-08-12 07:54:14 +03:00
|
|
|
void
|
|
|
|
Gecko_ClearPODTArray(void* aArray, size_t aElementSize, size_t aElementAlign)
|
|
|
|
{
|
|
|
|
auto base =
|
|
|
|
reinterpret_cast<nsTArray_base<nsTArrayInfallibleAllocator,
|
|
|
|
nsTArray_CopyWithMemutils>*>(aArray);
|
|
|
|
|
|
|
|
base->template ShiftData<nsTArrayInfallibleAllocator>(0, base->Length(), 0,
|
|
|
|
aElementSize, aElementAlign);
|
|
|
|
}
|
|
|
|
|
2017-04-08 10:17:34 +03:00
|
|
|
void
|
|
|
|
Gecko_CopyStyleGridTemplateValues(nsStyleGridTemplate* aGridTemplate,
|
|
|
|
const nsStyleGridTemplate* aOther)
|
|
|
|
{
|
|
|
|
*aGridTemplate = *aOther;
|
|
|
|
}
|
|
|
|
|
2017-05-04 13:24:01 +03:00
|
|
|
mozilla::css::GridTemplateAreasValue*
|
|
|
|
Gecko_NewGridTemplateAreasValue(uint32_t aAreas, uint32_t aTemplates, uint32_t aColumns)
|
|
|
|
{
|
|
|
|
RefPtr<mozilla::css::GridTemplateAreasValue> value = new mozilla::css::GridTemplateAreasValue;
|
|
|
|
value->mNamedAreas.SetLength(aAreas);
|
|
|
|
value->mTemplates.SetLength(aTemplates);
|
|
|
|
value->mNColumns = aColumns;
|
|
|
|
return value.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(mozilla::css::GridTemplateAreasValue, GridTemplateAreasValue);
|
|
|
|
|
2016-08-12 05:01:52 +03:00
|
|
|
void
|
2017-01-28 02:05:16 +03:00
|
|
|
Gecko_ClearAndResizeStyleContents(nsStyleContent* aContent, uint32_t aHowMany)
|
2016-08-12 05:01:52 +03:00
|
|
|
{
|
2017-01-28 02:05:16 +03:00
|
|
|
aContent->AllocateContents(aHowMany);
|
2016-08-12 05:01:52 +03:00
|
|
|
}
|
|
|
|
|
2016-08-16 22:07:17 +03:00
|
|
|
void
|
|
|
|
Gecko_CopyStyleContentsFrom(nsStyleContent* aContent, const nsStyleContent* aOther)
|
|
|
|
{
|
|
|
|
uint32_t count = aOther->ContentCount();
|
|
|
|
|
|
|
|
aContent->AllocateContents(count);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < count; ++i) {
|
|
|
|
aContent->ContentAt(i) = aOther->ContentAt(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-13 07:11:52 +03:00
|
|
|
void
|
|
|
|
Gecko_ClearAndResizeCounterIncrements(nsStyleContent* aContent, uint32_t aHowMany)
|
|
|
|
{
|
|
|
|
aContent->AllocateCounterIncrements(aHowMany);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyCounterIncrementsFrom(nsStyleContent* aContent, const nsStyleContent* aOther)
|
|
|
|
{
|
|
|
|
uint32_t count = aOther->CounterIncrementCount();
|
|
|
|
|
|
|
|
aContent->AllocateCounterIncrements(count);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < count; ++i) {
|
|
|
|
const nsStyleCounterData& data = aOther->CounterIncrementAt(i);
|
|
|
|
aContent->SetCounterIncrementAt(i, data.mCounter, data.mValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_ClearAndResizeCounterResets(nsStyleContent* aContent, uint32_t aHowMany)
|
|
|
|
{
|
|
|
|
aContent->AllocateCounterResets(aHowMany);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyCounterResetsFrom(nsStyleContent* aContent, const nsStyleContent* aOther)
|
|
|
|
{
|
|
|
|
uint32_t count = aOther->CounterResetCount();
|
|
|
|
|
|
|
|
aContent->AllocateCounterResets(count);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < count; ++i) {
|
|
|
|
const nsStyleCounterData& data = aOther->CounterResetAt(i);
|
|
|
|
aContent->SetCounterResetAt(i, data.mCounter, data.mValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-15 18:26:48 +03:00
|
|
|
void
|
2016-10-11 12:55:15 +03:00
|
|
|
Gecko_EnsureImageLayersLength(nsStyleImageLayers* aLayers, size_t aLen,
|
|
|
|
nsStyleImageLayers::LayerType aLayerType)
|
2016-07-15 18:26:48 +03:00
|
|
|
{
|
2016-10-11 12:55:15 +03:00
|
|
|
size_t oldLength = aLayers->mLayers.Length();
|
|
|
|
|
2016-07-14 11:59:48 +03:00
|
|
|
aLayers->mLayers.EnsureLengthAtLeast(aLen);
|
|
|
|
|
2016-10-11 12:55:15 +03:00
|
|
|
for (size_t i = oldLength; i < aLen; ++i) {
|
|
|
|
aLayers->mLayers[i].Initialize(aLayerType);
|
|
|
|
}
|
2016-07-14 11:59:48 +03:00
|
|
|
}
|
|
|
|
|
2017-01-06 15:45:16 +03:00
|
|
|
void
|
|
|
|
Gecko_EnsureStyleAnimationArrayLength(void* aArray, size_t aLen)
|
|
|
|
{
|
|
|
|
auto base =
|
2017-04-06 04:34:51 +03:00
|
|
|
static_cast<nsStyleAutoArray<StyleAnimation>*>(aArray);
|
2017-01-06 15:45:16 +03:00
|
|
|
|
2017-01-31 11:09:18 +03:00
|
|
|
size_t oldLength = base->Length();
|
|
|
|
|
2017-01-06 15:45:16 +03:00
|
|
|
base->EnsureLengthAtLeast(aLen);
|
2017-01-31 11:09:18 +03:00
|
|
|
|
|
|
|
for (size_t i = oldLength; i < aLen; ++i) {
|
|
|
|
(*base)[i].SetInitialValues();
|
|
|
|
}
|
2017-01-06 15:45:16 +03:00
|
|
|
}
|
|
|
|
|
2017-03-03 02:35:33 +03:00
|
|
|
void
|
|
|
|
Gecko_EnsureStyleTransitionArrayLength(void* aArray, size_t aLen)
|
|
|
|
{
|
|
|
|
auto base =
|
|
|
|
reinterpret_cast<nsStyleAutoArray<StyleTransition>*>(aArray);
|
|
|
|
|
|
|
|
size_t oldLength = base->Length();
|
|
|
|
|
|
|
|
base->EnsureLengthAtLeast(aLen);
|
|
|
|
|
|
|
|
for (size_t i = oldLength; i < aLen; ++i) {
|
|
|
|
(*base)[i].SetInitialValues();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-19 15:36:16 +03:00
|
|
|
void
|
|
|
|
Gecko_ClearWillChange(nsStyleDisplay* aDisplay, size_t aLength)
|
|
|
|
{
|
|
|
|
aDisplay->mWillChange.Clear();
|
|
|
|
aDisplay->mWillChange.SetCapacity(aLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_AppendWillChange(nsStyleDisplay* aDisplay, nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
aDisplay->mWillChange.AppendElement(aAtom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyWillChangeFrom(nsStyleDisplay* aDest, nsStyleDisplay* aSrc)
|
|
|
|
{
|
|
|
|
aDest->mWillChange.Clear();
|
|
|
|
aDest->mWillChange.AppendElements(aSrc->mWillChange);
|
|
|
|
}
|
|
|
|
|
2017-01-29 06:58:39 +03:00
|
|
|
Keyframe*
|
|
|
|
Gecko_AnimationAppendKeyframe(RawGeckoKeyframeListBorrowedMut aKeyframes,
|
|
|
|
float aOffset,
|
|
|
|
const nsTimingFunction* aTimingFunction)
|
|
|
|
{
|
|
|
|
Keyframe* keyframe = aKeyframes->AppendElement();
|
|
|
|
keyframe->mOffset.emplace(aOffset);
|
|
|
|
if (aTimingFunction &&
|
|
|
|
aTimingFunction->mType != nsTimingFunction::Type::Linear) {
|
|
|
|
keyframe->mTimingFunction.emplace();
|
|
|
|
keyframe->mTimingFunction->Init(*aTimingFunction);
|
|
|
|
}
|
|
|
|
|
|
|
|
return keyframe;
|
|
|
|
}
|
|
|
|
|
2016-07-15 18:26:48 +03:00
|
|
|
void
|
|
|
|
Gecko_ResetStyleCoord(nsStyleUnit* aUnit, nsStyleUnion* aValue)
|
|
|
|
{
|
|
|
|
nsStyleCoord::Reset(*aUnit, *aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_SetStyleCoordCalcValue(nsStyleUnit* aUnit, nsStyleUnion* aValue, nsStyleCoord::CalcValue aCalc)
|
|
|
|
{
|
|
|
|
// Calc units should be cleaned up first
|
|
|
|
MOZ_ASSERT(*aUnit != nsStyleUnit::eStyleUnit_Calc);
|
|
|
|
nsStyleCoord::Calc* calcRef = new nsStyleCoord::Calc();
|
|
|
|
calcRef->mLength = aCalc.mLength;
|
|
|
|
calcRef->mPercent = aCalc.mPercent;
|
|
|
|
calcRef->mHasPercent = aCalc.mHasPercent;
|
|
|
|
*aUnit = nsStyleUnit::eStyleUnit_Calc;
|
|
|
|
aValue->mPointer = calcRef;
|
|
|
|
calcRef->AddRef();
|
|
|
|
}
|
|
|
|
|
2016-08-15 18:48:11 +03:00
|
|
|
void
|
2017-04-12 15:52:38 +03:00
|
|
|
Gecko_CopyShapeSourceFrom(mozilla::StyleShapeSource* aDst, const mozilla::StyleShapeSource* aSrc)
|
2016-08-15 18:48:11 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aDst);
|
|
|
|
MOZ_ASSERT(aSrc);
|
|
|
|
|
|
|
|
*aDst = *aSrc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-04-12 15:52:38 +03:00
|
|
|
Gecko_DestroyShapeSource(mozilla::StyleShapeSource* aShape)
|
2016-08-15 18:48:11 +03:00
|
|
|
{
|
2017-04-12 15:52:38 +03:00
|
|
|
aShape->~StyleShapeSource();
|
2016-08-15 18:48:11 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
void
|
2017-04-12 15:52:38 +03:00
|
|
|
Gecko_StyleShapeSource_SetURLValue(mozilla::StyleShapeSource* aShape, ServoBundledURI aURI)
|
2017-02-10 04:43:52 +03:00
|
|
|
{
|
|
|
|
RefPtr<css::URLValue> url = aURI.IntoCssUrl();
|
2017-04-12 15:52:38 +03:00
|
|
|
aShape->SetURL(url.get());
|
2017-02-10 04:43:52 +03:00
|
|
|
}
|
|
|
|
|
2016-08-15 18:48:11 +03:00
|
|
|
mozilla::StyleBasicShape*
|
|
|
|
Gecko_NewBasicShape(mozilla::StyleBasicShapeType aType)
|
|
|
|
{
|
|
|
|
RefPtr<StyleBasicShape> ptr = new mozilla::StyleBasicShape(aType);
|
|
|
|
return ptr.forget().take();
|
|
|
|
}
|
|
|
|
|
2016-10-17 09:16:16 +03:00
|
|
|
void
|
|
|
|
Gecko_ResetFilters(nsStyleEffects* effects, size_t new_len)
|
|
|
|
{
|
|
|
|
effects->mFilters.Clear();
|
|
|
|
effects->mFilters.SetLength(new_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CopyFiltersFrom(nsStyleEffects* aSrc, nsStyleEffects* aDest)
|
|
|
|
{
|
|
|
|
aDest->mFilters = aSrc->mFilters;
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
void
|
|
|
|
Gecko_nsStyleFilter_SetURLValue(nsStyleFilter* aEffects, ServoBundledURI aURI)
|
|
|
|
{
|
|
|
|
RefPtr<css::URLValue> url = aURI.IntoCssUrl();
|
|
|
|
aEffects->SetURL(url.get());
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
void
|
|
|
|
Gecko_nsStyleSVGPaint_CopyFrom(nsStyleSVGPaint* aDest, const nsStyleSVGPaint* aSrc)
|
|
|
|
{
|
|
|
|
*aDest = *aSrc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_nsStyleSVGPaint_SetURLValue(nsStyleSVGPaint* aPaint, ServoBundledURI aURI)
|
|
|
|
{
|
|
|
|
RefPtr<css::URLValue> url = aURI.IntoCssUrl();
|
2017-05-03 00:12:59 +03:00
|
|
|
aPaint->SetPaintServer(url.get());
|
2017-02-10 04:43:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Gecko_nsStyleSVGPaint_Reset(nsStyleSVGPaint* aPaint)
|
|
|
|
{
|
|
|
|
aPaint->SetNone();
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
void
|
|
|
|
Gecko_nsStyleSVG_SetDashArrayLength(nsStyleSVG* aSvg, uint32_t aLen)
|
|
|
|
{
|
|
|
|
aSvg->mStrokeDasharray.Clear();
|
|
|
|
aSvg->mStrokeDasharray.SetLength(aLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_nsStyleSVG_CopyDashArray(nsStyleSVG* aDst, const nsStyleSVG* aSrc)
|
|
|
|
{
|
|
|
|
aDst->mStrokeDasharray = aSrc->mStrokeDasharray;
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:43:52 +03:00
|
|
|
css::URLValue*
|
|
|
|
Gecko_NewURLValue(ServoBundledURI aURI)
|
|
|
|
{
|
|
|
|
RefPtr<css::URLValue> url = aURI.IntoCssUrl();
|
|
|
|
return url.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(css::URLValue, CSSURLValue);
|
|
|
|
|
2017-04-04 03:04:13 +03:00
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(URLExtraData, URLExtraData);
|
2017-03-30 10:54:48 +03:00
|
|
|
|
2016-07-15 18:26:48 +03:00
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(nsStyleCoord::Calc, Calc);
|
|
|
|
|
2016-08-28 07:41:17 +03:00
|
|
|
nsCSSShadowArray*
|
|
|
|
Gecko_NewCSSShadowArray(uint32_t aLen)
|
|
|
|
{
|
|
|
|
RefPtr<nsCSSShadowArray> arr = new(aLen) nsCSSShadowArray(aLen);
|
|
|
|
return arr.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(nsCSSShadowArray, CSSShadowArray);
|
|
|
|
|
2016-10-13 14:45:01 +03:00
|
|
|
nsStyleQuoteValues*
|
|
|
|
Gecko_NewStyleQuoteValues(uint32_t aLen)
|
|
|
|
{
|
|
|
|
RefPtr<nsStyleQuoteValues> values = new nsStyleQuoteValues;
|
|
|
|
values->mQuotePairs.SetLength(aLen);
|
|
|
|
return values.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(nsStyleQuoteValues, QuoteValues);
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
nsCSSValueSharedList*
|
|
|
|
Gecko_NewCSSValueSharedList(uint32_t aLen)
|
|
|
|
{
|
|
|
|
RefPtr<nsCSSValueSharedList> list = new nsCSSValueSharedList;
|
|
|
|
if (aLen == 0) {
|
|
|
|
return list.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
list->mHead = new nsCSSValueList;
|
|
|
|
nsCSSValueList* cur = list->mHead;
|
|
|
|
for (uint32_t i = 0; i < aLen - 1; i++) {
|
|
|
|
cur->mNext = new nsCSSValueList;
|
|
|
|
cur = cur->mNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return list.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetAbsoluteLength(nsCSSValueBorrowedMut aCSSValue, nscoord aLen)
|
|
|
|
{
|
2017-01-31 08:38:44 +03:00
|
|
|
MOZ_ASSERT(aCSSValue->GetUnit() == eCSSUnit_Null || aCSSValue->IsLengthUnit());
|
|
|
|
// The call below could trigger refcounting if aCSSValue were a
|
|
|
|
// FontFamilyList, but we just asserted that it's not. So we can
|
|
|
|
// whitelist this for static analysis.
|
2016-11-01 02:30:43 +03:00
|
|
|
aCSSValue->SetIntegerCoordValue(aLen);
|
|
|
|
}
|
|
|
|
|
2017-02-03 08:41:29 +03:00
|
|
|
nscoord
|
|
|
|
Gecko_CSSValue_GetAbsoluteLength(nsCSSValueBorrowed aCSSValue)
|
|
|
|
{
|
|
|
|
// SetIntegerCoordValue() which is used in Gecko_CSSValue_SetAbsoluteLength()
|
|
|
|
// converts values by nsPresContext::AppUnitsToFloatCSSPixels() and stores
|
|
|
|
// values in eCSSUnit_Pixel unit. We need to convert the values back to app
|
|
|
|
// units by GetPixelLength().
|
|
|
|
MOZ_ASSERT(aCSSValue->GetUnit() == eCSSUnit_Pixel,
|
|
|
|
"The unit should be eCSSUnit_Pixel");
|
|
|
|
return aCSSValue->GetPixelLength();
|
|
|
|
}
|
|
|
|
|
2017-03-28 03:52:14 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetNormal(nsCSSValueBorrowedMut aCSSValue)
|
|
|
|
{
|
|
|
|
aCSSValue->SetNormalValue();
|
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetNumber(nsCSSValueBorrowedMut aCSSValue, float aNumber)
|
|
|
|
{
|
|
|
|
aCSSValue->SetFloatValue(aNumber, eCSSUnit_Number);
|
|
|
|
}
|
|
|
|
|
2017-02-03 08:41:29 +03:00
|
|
|
float
|
|
|
|
Gecko_CSSValue_GetNumber(nsCSSValueBorrowed aCSSValue)
|
|
|
|
{
|
|
|
|
return aCSSValue->GetFloatValue();
|
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetKeyword(nsCSSValueBorrowedMut aCSSValue, nsCSSKeyword aKeyword)
|
|
|
|
{
|
2017-02-03 08:41:28 +03:00
|
|
|
aCSSValue->SetEnumValue(aKeyword);
|
2016-11-01 02:30:43 +03:00
|
|
|
}
|
|
|
|
|
2017-02-03 08:41:29 +03:00
|
|
|
nsCSSKeyword
|
|
|
|
Gecko_CSSValue_GetKeyword(nsCSSValueBorrowed aCSSValue)
|
|
|
|
{
|
|
|
|
return aCSSValue->GetKeywordValue();
|
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetPercentage(nsCSSValueBorrowedMut aCSSValue, float aPercent)
|
|
|
|
{
|
2017-02-03 08:41:28 +03:00
|
|
|
aCSSValue->SetPercentValue(aPercent);
|
2016-11-01 02:30:43 +03:00
|
|
|
}
|
|
|
|
|
2017-02-03 08:41:29 +03:00
|
|
|
float
|
|
|
|
Gecko_CSSValue_GetPercentage(nsCSSValueBorrowed aCSSValue)
|
|
|
|
{
|
|
|
|
return aCSSValue->GetPercentValue();
|
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetCalc(nsCSSValueBorrowedMut aCSSValue, nsStyleCoord::CalcValue aCalc)
|
|
|
|
{
|
|
|
|
aCSSValue->SetCalcValue(&aCalc);
|
|
|
|
}
|
|
|
|
|
2017-02-03 08:41:29 +03:00
|
|
|
nsStyleCoord::CalcValue
|
|
|
|
Gecko_CSSValue_GetCalc(nsCSSValueBorrowed aCSSValue)
|
|
|
|
{
|
|
|
|
return aCSSValue->GetCalcValue();
|
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetFunction(nsCSSValueBorrowedMut aCSSValue, int32_t aLen)
|
|
|
|
{
|
|
|
|
nsCSSValue::Array* arr = nsCSSValue::Array::Create(aLen);
|
|
|
|
aCSSValue->SetArrayValue(arr, eCSSUnit_Function);
|
|
|
|
}
|
|
|
|
|
2017-02-18 02:15:55 +03:00
|
|
|
void
|
2017-03-28 03:52:14 +03:00
|
|
|
Gecko_CSSValue_SetString(nsCSSValueBorrowedMut aCSSValue,
|
|
|
|
const uint8_t* aString, uint32_t aLength,
|
|
|
|
nsCSSUnit aUnit)
|
2017-03-12 09:40:54 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aCSSValue->GetUnit() == eCSSUnit_Null);
|
|
|
|
nsString string;
|
|
|
|
nsDependentCSubstring slice(reinterpret_cast<const char*>(aString),
|
|
|
|
aLength);
|
|
|
|
AppendUTF8toUTF16(slice, string);
|
2017-03-28 03:52:14 +03:00
|
|
|
aCSSValue->SetStringValue(string, aUnit);
|
2017-03-12 09:40:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-28 03:52:14 +03:00
|
|
|
Gecko_CSSValue_SetStringFromAtom(nsCSSValueBorrowedMut aCSSValue,
|
|
|
|
nsIAtom* aAtom, nsCSSUnit aUnit)
|
2017-02-18 02:15:55 +03:00
|
|
|
{
|
2017-03-28 03:52:14 +03:00
|
|
|
aCSSValue->SetStringValue(nsDependentAtomString(aAtom), aUnit);
|
2017-02-18 02:15:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetArray(nsCSSValueBorrowedMut aCSSValue, int32_t aLength)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aCSSValue->GetUnit() == eCSSUnit_Null);
|
|
|
|
RefPtr<nsCSSValue::Array> array
|
|
|
|
= nsCSSValue::Array::Create(aLength);
|
|
|
|
aCSSValue->SetArrayValue(array, eCSSUnit_Array);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CSSValue_SetURL(nsCSSValueBorrowedMut aCSSValue,
|
|
|
|
ServoBundledURI aURI)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aCSSValue->GetUnit() == eCSSUnit_Null);
|
|
|
|
RefPtr<css::URLValue> url = aURI.IntoCssUrl();
|
|
|
|
aCSSValue->SetURLValue(url.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-28 03:52:14 +03:00
|
|
|
Gecko_CSSValue_SetInt(nsCSSValueBorrowedMut aCSSValue,
|
|
|
|
int32_t aInteger, nsCSSUnit aUnit)
|
2017-02-18 02:15:55 +03:00
|
|
|
{
|
2017-03-28 03:52:14 +03:00
|
|
|
aCSSValue->SetIntValue(aInteger, aUnit);
|
2017-02-18 02:15:55 +03:00
|
|
|
}
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
nsCSSValueBorrowedMut
|
|
|
|
Gecko_CSSValue_GetArrayItem(nsCSSValueBorrowedMut aCSSValue, int32_t aIndex)
|
|
|
|
{
|
|
|
|
return &aCSSValue->GetArrayValue()->Item(aIndex);
|
|
|
|
}
|
2017-02-03 08:41:29 +03:00
|
|
|
|
|
|
|
nsCSSValueBorrowed
|
|
|
|
Gecko_CSSValue_GetArrayItemConst(nsCSSValueBorrowed aCSSValue, int32_t aIndex)
|
|
|
|
{
|
|
|
|
return &aCSSValue->GetArrayValue()->Item(aIndex);
|
|
|
|
}
|
2016-11-01 02:30:43 +03:00
|
|
|
|
2017-01-10 03:05:18 +03:00
|
|
|
|
|
|
|
bool
|
|
|
|
Gecko_PropertyId_IsPrefEnabled(nsCSSPropertyID id)
|
|
|
|
{
|
|
|
|
return nsCSSProps::IsEnabled(id);
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:07:38 +03:00
|
|
|
void
|
|
|
|
Gecko_CSSValue_Drop(nsCSSValueBorrowedMut aCSSValue)
|
|
|
|
{
|
|
|
|
aCSSValue->~nsCSSValue();
|
|
|
|
}
|
|
|
|
|
2017-02-13 03:02:29 +03:00
|
|
|
void
|
|
|
|
Gecko_nsStyleFont_SetLang(nsStyleFont* aFont, nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
already_AddRefed<nsIAtom> atom = already_AddRefed<nsIAtom>(aAtom);
|
|
|
|
aFont->mLanguage = atom;
|
|
|
|
aFont->mExplicitLanguage = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_nsStyleFont_CopyLangFrom(nsStyleFont* aFont, const nsStyleFont* aSource)
|
|
|
|
{
|
|
|
|
aFont->mLanguage = aSource->mLanguage;
|
|
|
|
}
|
|
|
|
|
2017-04-22 02:10:50 +03:00
|
|
|
void
|
|
|
|
Gecko_nsStyleFont_FixupNoneGeneric(nsStyleFont* aFont,
|
|
|
|
RawGeckoPresContextBorrowed aPresContext)
|
|
|
|
{
|
|
|
|
const nsFont* defaultVariableFont =
|
|
|
|
aPresContext->GetDefaultFont(kPresContext_DefaultVariableFont_ID,
|
|
|
|
aFont->mLanguage);
|
|
|
|
nsRuleNode::FixupNoneGeneric(&aFont->mFont, aPresContext,
|
|
|
|
aFont->mGenericID, defaultVariableFont);
|
|
|
|
}
|
|
|
|
|
2017-04-04 21:11:27 +03:00
|
|
|
void
|
|
|
|
FontSizePrefs::CopyFrom(const LangGroupFontPrefs& prefs)
|
2017-03-18 05:48:20 +03:00
|
|
|
{
|
2017-04-04 21:11:27 +03:00
|
|
|
mDefaultVariableSize = prefs.mDefaultVariableFont.size;
|
|
|
|
mDefaultFixedSize = prefs.mDefaultFixedFont.size;
|
|
|
|
mDefaultSerifSize = prefs.mDefaultSerifFont.size;
|
|
|
|
mDefaultSansSerifSize = prefs.mDefaultSansSerifFont.size;
|
|
|
|
mDefaultMonospaceSize = prefs.mDefaultMonospaceFont.size;
|
|
|
|
mDefaultCursiveSize = prefs.mDefaultCursiveFont.size;
|
|
|
|
mDefaultFantasySize = prefs.mDefaultFantasyFont.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
FontSizePrefs
|
|
|
|
Gecko_GetBaseSize(nsIAtom* aLanguage)
|
|
|
|
{
|
|
|
|
LangGroupFontPrefs prefs;
|
|
|
|
nsCOMPtr<nsIAtom> langGroupAtom = StaticPresData::Get()->GetUncachedLangGroup(aLanguage);
|
|
|
|
|
|
|
|
prefs.Initialize(langGroupAtom);
|
|
|
|
FontSizePrefs sizes;
|
|
|
|
sizes.CopyFrom(prefs);
|
|
|
|
|
|
|
|
return sizes;
|
2017-03-18 05:48:20 +03:00
|
|
|
}
|
|
|
|
|
2017-04-08 01:49:44 +03:00
|
|
|
void
|
|
|
|
InitializeServo()
|
|
|
|
{
|
|
|
|
URLExtraData::InitDummy();
|
|
|
|
Servo_Initialize(URLExtraData::Dummy());
|
|
|
|
|
|
|
|
sServoFontMetricsLock = new Mutex("Gecko_GetFontMetrics");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ShutdownServo()
|
|
|
|
{
|
|
|
|
delete sServoFontMetricsLock;
|
|
|
|
Servo_Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-04-30 08:15:42 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
void
|
|
|
|
AssertIsMainThreadOrServoFontMetricsLocked()
|
|
|
|
{
|
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
MOZ_ASSERT(sServoFontMetricsLock);
|
|
|
|
sServoFontMetricsLock->AssertCurrentThreadOwns();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2017-04-08 01:49:44 +03:00
|
|
|
GeckoFontMetrics
|
|
|
|
Gecko_GetFontMetrics(RawGeckoPresContextBorrowed aPresContext,
|
|
|
|
bool aIsVertical,
|
|
|
|
const nsStyleFont* aFont,
|
|
|
|
nscoord aFontSize,
|
|
|
|
bool aUseUserFontSet)
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(*sServoFontMetricsLock);
|
|
|
|
GeckoFontMetrics ret;
|
2017-04-30 09:51:29 +03:00
|
|
|
|
|
|
|
// Getting font metrics can require some main thread only work to be
|
|
|
|
// done, such as work that needs to touch non-threadsafe refcounted
|
|
|
|
// objects (like the DOM FontFace/FontFaceSet objects), network loads, etc.
|
|
|
|
//
|
|
|
|
// To handle this work, font code checks whether we are in a Servo traversal
|
|
|
|
// and if so, appends PostTraversalTasks to the current ServoStyleSet
|
|
|
|
// to be performed immediately after the traversal is finished. This
|
|
|
|
// works well for starting downloadable font loads, since we don't have
|
|
|
|
// those fonts available to get metrics for anyway. Platform fonts and
|
|
|
|
// ArrayBuffer-backed FontFace objects are handled synchronously.
|
|
|
|
|
2017-04-08 01:49:44 +03:00
|
|
|
nsPresContext* presContext = const_cast<nsPresContext*>(aPresContext);
|
2017-04-08 01:49:44 +03:00
|
|
|
presContext->SetUsesExChUnits(true);
|
2017-04-08 01:49:44 +03:00
|
|
|
RefPtr<nsFontMetrics> fm = nsRuleNode::GetMetricsFor(presContext, aIsVertical,
|
|
|
|
aFont, aFontSize,
|
|
|
|
aUseUserFontSet);
|
|
|
|
ret.mXSize = fm->XHeight();
|
|
|
|
gfxFloat zeroWidth = fm->GetThebesFontGroup()->GetFirstValidFont()->
|
|
|
|
GetMetrics(fm->Orientation()).zeroOrAveCharWidth;
|
|
|
|
ret.mChSize = ceil(aPresContext->AppUnitsPerDevPixel() * zeroWidth);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:29:46 +03:00
|
|
|
int32_t
|
|
|
|
Gecko_GetAppUnitsPerPhysicalInch(RawGeckoPresContextBorrowed aPresContext)
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = const_cast<nsPresContext*>(aPresContext);
|
|
|
|
return presContext->DeviceContext()->AppUnitsPerPhysicalInch();
|
|
|
|
}
|
|
|
|
|
2016-12-17 12:58:56 +03:00
|
|
|
void
|
|
|
|
Gecko_LoadStyleSheet(css::Loader* aLoader,
|
|
|
|
ServoStyleSheet* aParent,
|
2017-04-03 09:18:49 +03:00
|
|
|
RawServoStyleSheetBorrowed aChildSheet,
|
2017-03-30 10:54:48 +03:00
|
|
|
RawGeckoURLExtraData* aBaseURLData,
|
2016-12-17 12:58:56 +03:00
|
|
|
const uint8_t* aURLString,
|
|
|
|
uint32_t aURLStringLength,
|
2017-04-10 06:17:51 +03:00
|
|
|
RawServoMediaListStrong aMediaList)
|
2016-12-17 12:58:56 +03:00
|
|
|
{
|
2017-01-31 08:33:41 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2016-12-17 12:58:56 +03:00
|
|
|
MOZ_ASSERT(aLoader, "Should've catched this before");
|
|
|
|
MOZ_ASSERT(aParent, "Only used for @import, so parent should exist!");
|
|
|
|
MOZ_ASSERT(aURLString, "Invalid URLs shouldn't be loaded!");
|
2017-03-30 10:54:48 +03:00
|
|
|
MOZ_ASSERT(aBaseURLData, "Need base URL data");
|
2017-04-10 06:17:51 +03:00
|
|
|
RefPtr<dom::MediaList> media = new ServoMediaList(aMediaList.Consume());
|
2016-12-17 12:58:56 +03:00
|
|
|
|
|
|
|
nsDependentCSubstring urlSpec(reinterpret_cast<const char*>(aURLString),
|
|
|
|
aURLStringLength);
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
2017-03-30 10:54:48 +03:00
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(uri), urlSpec, nullptr,
|
|
|
|
aBaseURLData->BaseURI());
|
2017-01-03 13:35:15 +03:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Servo and Gecko have different ideas of what a valid URL is, so we might
|
|
|
|
// get in here with a URL string that NS_NewURI can't handle. If so,
|
|
|
|
// silently do nothing. Eventually we should be able to assert that the
|
|
|
|
// NS_NewURI succeeds, here.
|
|
|
|
return;
|
|
|
|
}
|
2016-12-17 12:58:56 +03:00
|
|
|
|
2017-04-03 09:18:49 +03:00
|
|
|
aLoader->LoadChildSheet(aParent, uri, media, nullptr, aChildSheet, nullptr);
|
2016-12-17 12:58:56 +03:00
|
|
|
}
|
|
|
|
|
2017-01-15 01:33:40 +03:00
|
|
|
const nsMediaFeature*
|
|
|
|
Gecko_GetMediaFeatures()
|
|
|
|
{
|
|
|
|
return nsMediaFeatures::features;
|
|
|
|
}
|
|
|
|
|
2017-04-13 07:24:02 +03:00
|
|
|
nsCSSKeyword
|
|
|
|
Gecko_LookupCSSKeyword(const uint8_t* aString, uint32_t aLength)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
nsDependentCSubstring keyword(reinterpret_cast<const char*>(aString), aLength);
|
|
|
|
return nsCSSKeywords::LookupKeyword(keyword);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char*
|
|
|
|
Gecko_CSSKeywordString(nsCSSKeyword aKeyword, uint32_t* aLength)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aLength);
|
|
|
|
const nsAFlatCString& value = nsCSSKeywords::GetStringValue(aKeyword);
|
|
|
|
*aLength = value.Length();
|
|
|
|
return value.get();
|
|
|
|
}
|
|
|
|
|
2017-03-24 06:42:18 +03:00
|
|
|
nsCSSFontFaceRule*
|
|
|
|
Gecko_CSSFontFaceRule_Create()
|
|
|
|
{
|
|
|
|
RefPtr<nsCSSFontFaceRule> rule = new nsCSSFontFaceRule(0, 0);
|
|
|
|
return rule.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_CSSFontFaceRule_GetCssText(const nsCSSFontFaceRule* aRule,
|
|
|
|
nsAString* aResult)
|
|
|
|
{
|
2017-04-20 23:33:12 +03:00
|
|
|
// GetCSSText serializes nsCSSValues, which have a heap write
|
|
|
|
// hazard when dealing with color values (nsCSSKeywords::AddRefTable)
|
|
|
|
// We only serialize on the main thread; assert to convince the analysis
|
|
|
|
// and prevent accidentally calling this elsewhere
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2017-03-24 06:42:18 +03:00
|
|
|
aRule->GetCssText(*aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FFI_REFCOUNTING(nsCSSFontFaceRule, CSSFontFaceRule);
|
|
|
|
|
2016-11-01 02:30:43 +03:00
|
|
|
NS_IMPL_THREADSAFE_FFI_REFCOUNTING(nsCSSValueSharedList, CSSValueSharedList);
|
|
|
|
|
2016-04-02 03:04:59 +03:00
|
|
|
#define STYLE_STRUCT(name, checkdata_cb) \
|
|
|
|
\
|
|
|
|
void \
|
2017-01-04 22:52:26 +03:00
|
|
|
Gecko_Construct_Default_nsStyle##name(nsStyle##name* ptr, \
|
|
|
|
const nsPresContext* pres_context) \
|
|
|
|
{ \
|
|
|
|
new (ptr) nsStyle##name(pres_context); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void \
|
2016-04-02 03:04:59 +03:00
|
|
|
Gecko_CopyConstruct_nsStyle##name(nsStyle##name* ptr, \
|
|
|
|
const nsStyle##name* other) \
|
|
|
|
{ \
|
|
|
|
new (ptr) nsStyle##name(*other); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void \
|
|
|
|
Gecko_Destroy_nsStyle##name(nsStyle##name* ptr) \
|
|
|
|
{ \
|
|
|
|
ptr->~nsStyle##name(); \
|
|
|
|
}
|
|
|
|
|
2017-01-04 22:52:27 +03:00
|
|
|
void
|
|
|
|
Gecko_Construct_nsStyleVariables(nsStyleVariables* ptr)
|
|
|
|
{
|
|
|
|
new (ptr) nsStyleVariables();
|
|
|
|
}
|
|
|
|
|
2017-04-07 17:44:41 +03:00
|
|
|
void
|
|
|
|
Gecko_RegisterProfilerThread(const char* name)
|
|
|
|
{
|
|
|
|
char stackTop;
|
|
|
|
profiler_register_thread(name, &stackTop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Gecko_UnregisterProfilerThread()
|
|
|
|
{
|
|
|
|
profiler_unregister_thread();
|
|
|
|
}
|
|
|
|
|
2016-04-02 03:04:59 +03:00
|
|
|
#include "nsStyleStructList.h"
|
|
|
|
|
|
|
|
#undef STYLE_STRUCT
|
|
|
|
|
2016-02-26 04:51:01 +03:00
|
|
|
#ifndef MOZ_STYLO
|
2016-08-19 14:44:43 +03:00
|
|
|
#define SERVO_BINDING_FUNC(name_, return_, ...) \
|
|
|
|
return_ name_(__VA_ARGS__) { \
|
|
|
|
MOZ_CRASH("stylo: shouldn't be calling " #name_ "in a non-stylo build"); \
|
|
|
|
}
|
|
|
|
#include "ServoBindingList.h"
|
|
|
|
#undef SERVO_BINDING_FUNC
|
2016-04-27 05:34:49 +03:00
|
|
|
#endif
|