зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1367275 - Part 4: stylo: Support -moz-context-properties; r=xidorn
MozReview-Commit-ID: 6eNeT6v8Nl6
This commit is contained in:
Родитель
fa7f5ead89
Коммит
15ca68fab4
|
@ -1742,6 +1742,21 @@ Gecko_nsStyleSVG_CopyDashArray(nsStyleSVG* aDst, const nsStyleSVG* aSrc)
|
|||
aDst->mStrokeDasharray = aSrc->mStrokeDasharray;
|
||||
}
|
||||
|
||||
void
|
||||
Gecko_nsStyleSVG_SetContextPropertiesLength(nsStyleSVG* aSvg, uint32_t aLen)
|
||||
{
|
||||
aSvg->mContextProps.Clear();
|
||||
aSvg->mContextProps.SetLength(aLen);
|
||||
}
|
||||
|
||||
void
|
||||
Gecko_nsStyleSVG_CopyContextProperties(nsStyleSVG* aDst, const nsStyleSVG* aSrc)
|
||||
{
|
||||
aDst->mContextProps = aSrc->mContextProps;
|
||||
aDst->mContextPropsBits = aSrc->mContextPropsBits;
|
||||
}
|
||||
|
||||
|
||||
css::URLValue*
|
||||
Gecko_NewURLValue(ServoBundledURI aURI)
|
||||
{
|
||||
|
|
|
@ -450,6 +450,8 @@ void Gecko_nsStyleSVGPaint_Reset(nsStyleSVGPaint* paint);
|
|||
|
||||
void Gecko_nsStyleSVG_SetDashArrayLength(nsStyleSVG* svg, uint32_t len);
|
||||
void Gecko_nsStyleSVG_CopyDashArray(nsStyleSVG* dst, const nsStyleSVG* src);
|
||||
void Gecko_nsStyleSVG_SetContextPropertiesLength(nsStyleSVG* svg, uint32_t len);
|
||||
void Gecko_nsStyleSVG_CopyContextProperties(nsStyleSVG* dst, const nsStyleSVG* src);
|
||||
|
||||
mozilla::css::URLValue* Gecko_NewURLValue(ServoBundledURI uri);
|
||||
NS_DECL_THREADSAFE_FFI_REFCOUNTING(mozilla::css::URLValue, CSSURLValue);
|
||||
|
|
Загрузка…
Ссылка в новой задаче