mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 964200 (Part 3b activate) - Implement Filter Effects Module feDropShadow filter r=mstange
This commit is contained in:
parent
63dc970a46
commit
0c051bba75
2
CLOBBER
2
CLOBBER
@ -22,4 +22,4 @@
|
||||
# changes to stick? As of bug 928195, this shouldn't be necessary! Please
|
||||
# don't change CLOBBER for WebIDL changes any more.
|
||||
|
||||
Bug 924839 - Touching ICU's configure scripts in this bug doesn't work without a clobber. This is filed as bug 966038.
|
||||
Bug 964200 - Touching webidl files in this bug doesn't work without a clobber. Tried landing already and had to back out.
|
||||
|
@ -45,6 +45,7 @@ SVG_TAG(feConvolveMatrix, FEConvolveMatrix)
|
||||
SVG_TAG(feDiffuseLighting, FEDiffuseLighting)
|
||||
SVG_TAG(feDisplacementMap, FEDisplacementMap)
|
||||
SVG_TAG(feDistantLight, FEDistantLight)
|
||||
SVG_TAG(feDropShadow, FEDropShadow)
|
||||
SVG_TAG(feFlood, FEFlood)
|
||||
SVG_TAG(feFuncA, FEFuncA)
|
||||
SVG_TAG(feFuncB, FEFuncB)
|
||||
|
@ -169,6 +169,7 @@ UNIFIED_SOURCES += [
|
||||
'SVGFEDiffuseLightingElement.cpp',
|
||||
'SVGFEDisplacementMapElement.cpp',
|
||||
'SVGFEDistantLightElement.cpp',
|
||||
'SVGFEDropShadowElement.cpp',
|
||||
'SVGFEFloodElement.cpp',
|
||||
'SVGFEGaussianBlurElement.cpp',
|
||||
'SVGFEImageElement.cpp',
|
||||
|
@ -54,6 +54,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=589640
|
||||
<feDiffuseLighting id="feDiffuseLighting" />
|
||||
<feDisplacementMap id="feDisplacementMap" />
|
||||
<feDistantLight id="feDistantLight" />
|
||||
<feDropShadow id="feDropShadow" />
|
||||
<feFlood id="feFlood" />
|
||||
<feFuncA id="feFuncA" />
|
||||
<feFuncB id="feFuncB" />
|
||||
|
@ -462,6 +462,7 @@ exports.browser = {
|
||||
SVGFEDiffuseLightingElement: false,
|
||||
SVGFEDisplacementMapElement: false,
|
||||
SVGFEDistantLightElement: false,
|
||||
SVGFEDropShadowElement: false,
|
||||
SVGFEFloodElement : false,
|
||||
SVGFEFuncAElement : false,
|
||||
SVGFEFuncBElement : false,
|
||||
|
@ -326,6 +326,7 @@ WEBIDL_FILES = [
|
||||
'SVGFEDiffuseLightingElement.webidl',
|
||||
'SVGFEDisplacementMapElement.webidl',
|
||||
'SVGFEDistantLightElement.webidl',
|
||||
'SVGFEDropShadowElement.webidl',
|
||||
'SVGFEFloodElement.webidl',
|
||||
'SVGFEFuncAElement.webidl',
|
||||
'SVGFEFuncBElement.webidl',
|
||||
|
@ -4989,6 +4989,7 @@ nsCSSFrameConstructor::FindSVGData(Element* aElement,
|
||||
SIMPLE_SVG_CREATE(feConvolveMatrix, NS_NewSVGFELeafFrame),
|
||||
SIMPLE_SVG_CREATE(feDiffuseLighting, NS_NewSVGFEContainerFrame),
|
||||
SIMPLE_SVG_CREATE(feDisplacementMap, NS_NewSVGFELeafFrame),
|
||||
SIMPLE_SVG_CREATE(feDropShadow, NS_NewSVGFELeafFrame),
|
||||
SIMPLE_SVG_CREATE(feFlood, NS_NewSVGFELeafFrame),
|
||||
SIMPLE_SVG_CREATE(feGaussianBlur, NS_NewSVGFELeafFrame),
|
||||
SIMPLE_SVG_CREATE(feImage, NS_NewSVGFEImageFrame),
|
||||
|
Loading…
x
Reference in New Issue
Block a user