make SVG NS_NOTYETIMPLEMENTED messages more meaningful Bug 303501 r=jonathan.watt sr=tor a=asa

This commit is contained in:
bob%bclary.com 2005-08-09 13:53:02 +00:00
Родитель 458cade5ef
Коммит be358fcae1
18 изменённых файлов: 138 добавлений и 138 удалений

Просмотреть файл

@ -433,7 +433,7 @@ nsSVGElement::sColorMap[] = {
NS_IMETHODIMP
nsSVGElement::IsSupported(const nsAString& aFeature, const nsAString& aVersion, PRBool* aReturn)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGElement::IsSupported");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -98,14 +98,14 @@ nsSVGGraphicElement::Init()
/* readonly attribute nsIDOMSVGElement nearestViewportElement; */
NS_IMETHODIMP nsSVGGraphicElement::GetNearestViewportElement(nsIDOMSVGElement * *aNearestViewportElement)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGGraphicElement::GetNearestViewportElement");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMSVGElement farthestViewportElement; */
NS_IMETHODIMP nsSVGGraphicElement::GetFarthestViewportElement(nsIDOMSVGElement * *aFarthestViewportElement)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGGraphicElement::GetFarthestViewportElement");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -312,7 +312,7 @@ NS_IMETHODIMP nsSVGGraphicElement::GetTransformToElement(nsIDOMSVGElement *eleme
// if (!element)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGGraphicElement::GetTransformToElement");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -248,7 +248,7 @@ nsSVGLength::GetValue(float *aValue)
break;
case SVG_LENGTHTYPE_EMS:
case SVG_LENGTHTYPE_EXS:
NS_NOTYETIMPLEMENTED("unit not implemented - write me!");
NS_NOTYETIMPLEMENTED("SVG_LENGTHTYPE_EXS");
*aValue = 0;
return NS_ERROR_NOT_IMPLEMENTED;
default:
@ -291,7 +291,7 @@ nsSVGLength::SetValue(float aValue)
break;
case SVG_LENGTHTYPE_EMS:
case SVG_LENGTHTYPE_EXS:
NS_NOTYETIMPLEMENTED("unit not implemented - write me!");
NS_NOTYETIMPLEMENTED("SVG_LENGTHTYPE_EXS");
mValueInSpecifiedUnits = 0;
rv = NS_ERROR_NOT_IMPLEMENTED;
break;
@ -499,7 +499,7 @@ nsSVGLength::GetTransformedValue(nsIDOMSVGMatrix *matrix,
// if (!matrix)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGLength::GetTransformedValue");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -245,7 +245,7 @@ nsSVGLengthList::InsertItemBefore(nsIDOMSVGLength *newItem,
// if (!newItem)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me");
NS_NOTYETIMPLEMENTED("nsSVGLengthList::InsertItemBefore");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -259,7 +259,7 @@ nsSVGLengthList::ReplaceItem(nsIDOMSVGLength *newItem,
// if (!newItem)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGLengthList::ReplaceItem");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -264,22 +264,22 @@ NS_IMETHODIMP nsSVGMatrix::Rotate(float angle, nsIDOMSVGMatrix **_retval)
/* nsIDOMSVGMatrix rotateFromVector (in float x, in float y); */
NS_IMETHODIMP nsSVGMatrix::RotateFromVector(float x, float y, nsIDOMSVGMatrix **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGMatrix::RotateFromVector");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGMatrix flipX (); */
NS_IMETHODIMP nsSVGMatrix::FlipX(nsIDOMSVGMatrix **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGMatrix::FlipX");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGMatrix flipY (); */
NS_IMETHODIMP nsSVGMatrix::FlipY(nsIDOMSVGMatrix **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGMatrix::FlipY");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGMatrix skewX (in float angle); */
@ -310,13 +310,13 @@ NS_IMETHODIMP nsSVGMatrix::SkewY(float angle, nsIDOMSVGMatrix **_retval)
NS_IMETHODIMP
nsSVGMatrix::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGMatrix::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsSVGMatrix::GetValueString(nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGMatrix::GetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -123,8 +123,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegClosePath)
NS_IMETHODIMP
nsSVGPathSegClosePath::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegClosePath::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -196,8 +196,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegMovetoAbs)
NS_IMETHODIMP
nsSVGPathSegMovetoAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegMovetoAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -304,8 +304,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegMovetoRel)
NS_IMETHODIMP
nsSVGPathSegMovetoRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegMovetoRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -411,8 +411,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoAbs)
NS_IMETHODIMP
nsSVGPathSegLinetoAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -519,8 +519,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoRel)
NS_IMETHODIMP
nsSVGPathSegLinetoRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -633,8 +633,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoCubicAbs)
NS_IMETHODIMP
nsSVGPathSegCurvetoCubicAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoCubicAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -804,8 +804,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoCubicRel)
NS_IMETHODIMP
nsSVGPathSegCurvetoCubicRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoCubicRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -971,8 +971,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoQuadraticAbs)
NS_IMETHODIMP
nsSVGPathSegCurvetoQuadraticAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoQuadraticAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1111,8 +1111,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoQuadraticRel)
NS_IMETHODIMP
nsSVGPathSegCurvetoQuadraticRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoQuadraticRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1257,8 +1257,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegArcAbs)
NS_IMETHODIMP
nsSVGPathSegArcAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegArcAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1446,8 +1446,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegArcRel)
NS_IMETHODIMP
nsSVGPathSegArcRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegArcRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1624,8 +1624,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoHorizontalAbs)
NS_IMETHODIMP
nsSVGPathSegLinetoHorizontalAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoHorizontalAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1716,8 +1716,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoHorizontalRel)
NS_IMETHODIMP
nsSVGPathSegLinetoHorizontalRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoHorizontalRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1808,8 +1808,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoVerticalAbs)
NS_IMETHODIMP
nsSVGPathSegLinetoVerticalAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoVerticalAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1900,8 +1900,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegLinetoVerticalRel)
NS_IMETHODIMP
nsSVGPathSegLinetoVerticalRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegLinetoVerticalRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -1996,8 +1996,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoCubicSmoothAbs)
NS_IMETHODIMP
nsSVGPathSegCurvetoCubicSmoothAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoCubicSmoothAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -2135,8 +2135,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoCubicSmoothRel)
NS_IMETHODIMP
nsSVGPathSegCurvetoCubicSmoothRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoCubicSmoothRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -2271,8 +2271,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoQuadraticSmoothAbs)
NS_IMETHODIMP
nsSVGPathSegCurvetoQuadraticSmoothAbs::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoQuadraticSmoothAbs::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
@ -2378,8 +2378,8 @@ NS_IMPL_NSISUPPORTS_SVGPATHSEG(SVGPathSegCurvetoQuadraticSmoothRel)
NS_IMETHODIMP
nsSVGPathSegCurvetoQuadraticSmoothRel::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGPathSegCurvetoQuadraticSmoothRel::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP

Просмотреть файл

@ -242,7 +242,7 @@ NS_IMETHODIMP nsSVGPathSegList::InsertItemBefore(nsIDOMSVGPathSeg *newItem,
// if (!newItem)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me");
NS_NOTYETIMPLEMENTED("nsSVGPathSegList::InsertItemBefore");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -255,7 +255,7 @@ NS_IMETHODIMP nsSVGPathSegList::ReplaceItem(nsIDOMSVGPathSeg *newItem,
// if (!newItem)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGPathSegList::ReplaceItem");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -151,13 +151,13 @@ NS_IMETHODIMP nsSVGPoint::MatrixTransform(nsIDOMSVGMatrix *matrix,
NS_IMETHODIMP
nsSVGPoint::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGPoint::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsSVGPoint::GetValueString(nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGPoint::GetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -355,13 +355,13 @@ nsSVGSVGElement::GetHeight(nsIDOMSVGAnimatedLength * *aHeight)
NS_IMETHODIMP
nsSVGSVGElement::GetContentScriptType(nsAString & aContentScriptType)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetContentScriptType");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsSVGSVGElement::SetContentScriptType(const nsAString & aContentScriptType)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::SetContentScriptType");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -369,13 +369,13 @@ nsSVGSVGElement::SetContentScriptType(const nsAString & aContentScriptType)
NS_IMETHODIMP
nsSVGSVGElement::GetContentStyleType(nsAString & aContentStyleType)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetContentStyleType");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsSVGSVGElement::SetContentStyleType(const nsAString & aContentStyleType)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::SetContentStyleType");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -453,13 +453,13 @@ nsSVGSVGElement::GetScreenPixelToMillimeterY(float *aScreenPixelToMillimeterY)
NS_IMETHODIMP
nsSVGSVGElement::GetUseCurrentView(PRBool *aUseCurrentView)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetUseCurrentView");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsSVGSVGElement::SetUseCurrentView(PRBool aUseCurrentView)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::SetUseCurrentView");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -467,7 +467,7 @@ nsSVGSVGElement::SetUseCurrentView(PRBool aUseCurrentView)
NS_IMETHODIMP
nsSVGSVGElement::GetCurrentView(nsIDOMSVGViewSpec * *aCurrentView)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetCurrentView");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -592,7 +592,7 @@ nsSVGSVGElement::ForceRedraw()
NS_IMETHODIMP
nsSVGSVGElement::PauseAnimations()
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::PauseAnimations");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -600,7 +600,7 @@ nsSVGSVGElement::PauseAnimations()
NS_IMETHODIMP
nsSVGSVGElement::UnpauseAnimations()
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::UnpauseAnimations");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -608,7 +608,7 @@ nsSVGSVGElement::UnpauseAnimations()
NS_IMETHODIMP
nsSVGSVGElement::AnimationsPaused(PRBool *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::AnimationsPaused");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -616,7 +616,7 @@ nsSVGSVGElement::AnimationsPaused(PRBool *_retval)
NS_IMETHODIMP
nsSVGSVGElement::GetCurrentTime(float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetCurrentTime");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -624,7 +624,7 @@ nsSVGSVGElement::GetCurrentTime(float *_retval)
NS_IMETHODIMP
nsSVGSVGElement::SetCurrentTime(float seconds)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::SetCurrentTime");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -638,7 +638,7 @@ nsSVGSVGElement::GetIntersectionList(nsIDOMSVGRect *rect,
// if (!rect || !referenceElement)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetIntersectionList");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -652,7 +652,7 @@ nsSVGSVGElement::GetEnclosureList(nsIDOMSVGRect *rect,
// if (!rect || !referenceElement)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetEnclosureList");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -666,7 +666,7 @@ nsSVGSVGElement::CheckIntersection(nsIDOMSVGElement *element,
// if (!element || !rect)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::CheckIntersection");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -680,7 +680,7 @@ nsSVGSVGElement::CheckEnclosure(nsIDOMSVGElement *element,
// if (!element || !rect)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::CheckEnclosure");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -688,7 +688,7 @@ nsSVGSVGElement::CheckEnclosure(nsIDOMSVGElement *element,
NS_IMETHODIMP
nsSVGSVGElement::DeSelectAll()
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::DeSelectAll");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -710,7 +710,7 @@ nsSVGSVGElement::CreateSVGLength(nsIDOMSVGLength **_retval)
NS_IMETHODIMP
nsSVGSVGElement::CreateSVGAngle(nsIDOMSVGAngle **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::CreateSVGAngle");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -928,7 +928,7 @@ nsSVGSVGElement::GetPreserveAspectRatio(nsIDOMSVGAnimatedPreserveAspectRatio * *
NS_IMETHODIMP
nsSVGSVGElement::GetNearestViewportElement(nsIDOMSVGElement * *aNearestViewportElement)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetNearestViewportElement");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -936,7 +936,7 @@ nsSVGSVGElement::GetNearestViewportElement(nsIDOMSVGElement * *aNearestViewportE
NS_IMETHODIMP
nsSVGSVGElement::GetFarthestViewportElement(nsIDOMSVGElement * *aFarthestViewportElement)
{
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetFarthestViewportElement");
return NS_ERROR_NOT_IMPLEMENTED;
}
@ -1152,7 +1152,7 @@ nsSVGSVGElement::GetTransformToElement(nsIDOMSVGElement *element,
// if (!element)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
NS_NOTYETIMPLEMENTED("nsSVGSVGElement::GetTransformToElement");
return NS_ERROR_NOT_IMPLEMENTED;
}

Просмотреть файл

@ -231,8 +231,8 @@ NS_IMETHODIMP nsSVGTSpanElement::GetDy(nsIDOMSVGAnimatedLengthList * *aDy)
/* readonly attribute nsIDOMSVGAnimatedNumberList rotate; */
NS_IMETHODIMP nsSVGTSpanElement::GetRotate(nsIDOMSVGAnimatedNumberList * *aRotate)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetRotate");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------
@ -241,64 +241,64 @@ NS_IMETHODIMP nsSVGTSpanElement::GetRotate(nsIDOMSVGAnimatedNumberList * *aRotat
/* readonly attribute nsIDOMSVGAnimatedLength textLength; */
NS_IMETHODIMP nsSVGTSpanElement::GetTextLength(nsIDOMSVGAnimatedLength * *aTextLength)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetTextLength");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMSVGAnimatedEnumeration lengthAdjust; */
NS_IMETHODIMP nsSVGTSpanElement::GetLengthAdjust(nsIDOMSVGAnimatedEnumeration * *aLengthAdjust)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetLengthAdjust");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long getNumberOfChars (); */
NS_IMETHODIMP nsSVGTSpanElement::GetNumberOfChars(PRInt32 *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetNumberOfChars");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* float getComputedTextLength (); */
NS_IMETHODIMP nsSVGTSpanElement::GetComputedTextLength(float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetComputedTextLength");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* float getSubStringLength (in unsigned long charnum, in unsigned long nchars); */
NS_IMETHODIMP nsSVGTSpanElement::GetSubStringLength(PRUint32 charnum, PRUint32 nchars, float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetSubStringLength");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPoint getStartPositionOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTSpanElement::GetStartPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetStartPositionOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPoint getEndPositionOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTSpanElement::GetEndPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetEndPositionOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGRect getExtentOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTSpanElement::GetExtentOfChar(PRUint32 charnum, nsIDOMSVGRect **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetExtentOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* float getRotationOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTSpanElement::GetRotationOfChar(PRUint32 charnum, float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetRotationOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long getCharNumAtPosition (in nsIDOMSVGPoint point); */
@ -309,15 +309,15 @@ NS_IMETHODIMP nsSVGTSpanElement::GetCharNumAtPosition(nsIDOMSVGPoint *point,
// if (!point)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::GetCharNumAtPosition");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void selectSubString (in unsigned long charnum, in unsigned long nchars); */
NS_IMETHODIMP nsSVGTSpanElement::SelectSubString(PRUint32 charnum, PRUint32 nchars)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanElement::SelectSubString");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------

Просмотреть файл

@ -237,8 +237,8 @@ NS_IMETHODIMP nsSVGTextElement::GetDy(nsIDOMSVGAnimatedLengthList * *aDy)
/* readonly attribute nsIDOMSVGAnimatedNumberList rotate; */
NS_IMETHODIMP nsSVGTextElement::GetRotate(nsIDOMSVGAnimatedNumberList * *aRotate)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetRotate");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------
@ -247,22 +247,22 @@ NS_IMETHODIMP nsSVGTextElement::GetRotate(nsIDOMSVGAnimatedNumberList * *aRotate
/* readonly attribute nsIDOMSVGAnimatedLength textLength; */
NS_IMETHODIMP nsSVGTextElement::GetTextLength(nsIDOMSVGAnimatedLength * *aTextLength)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetTextLength");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMSVGAnimatedEnumeration lengthAdjust; */
NS_IMETHODIMP nsSVGTextElement::GetLengthAdjust(nsIDOMSVGAnimatedEnumeration * *aLengthAdjust)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetLengthAdjust");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long getNumberOfChars (); */
NS_IMETHODIMP nsSVGTextElement::GetNumberOfChars(PRInt32 *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetNumberOfChars");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* float getComputedTextLength (); */
@ -282,22 +282,22 @@ NS_IMETHODIMP nsSVGTextElement::GetComputedTextLength(float *_retval)
/* float getSubStringLength (in unsigned long charnum, in unsigned long nchars); */
NS_IMETHODIMP nsSVGTextElement::GetSubStringLength(PRUint32 charnum, PRUint32 nchars, float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetSubStringLength");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPoint getStartPositionOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTextElement::GetStartPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetStartPositionOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPoint getEndPositionOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTextElement::GetEndPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetEndPositionOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGRect getExtentOfChar (in unsigned long charnum); */
@ -314,8 +314,8 @@ NS_IMETHODIMP nsSVGTextElement::GetExtentOfChar(PRUint32 charnum, nsIDOMSVGRect
/* float getRotationOfChar (in unsigned long charnum); */
NS_IMETHODIMP nsSVGTextElement::GetRotationOfChar(PRUint32 charnum, float *_retval)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetRotationOfChar");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long getCharNumAtPosition (in nsIDOMSVGPoint point); */
@ -325,15 +325,15 @@ NS_IMETHODIMP nsSVGTextElement::GetCharNumAtPosition(nsIDOMSVGPoint *point, PRIn
// if (!element)
// return NS_ERROR_DOM_SVG_WRONG_TYPE_ERR;
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::GetCharNumAtPosition");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void selectSubString (in unsigned long charnum, in unsigned long nchars); */
NS_IMETHODIMP nsSVGTextElement::SelectSubString(PRUint32 charnum, PRUint32 nchars)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextElement::SelectSubString");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------

Просмотреть файл

@ -133,8 +133,8 @@ NS_INTERFACE_MAP_END
NS_IMETHODIMP
nsSVGTransform::SetValueString(const nsAString& aValue)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTransform::SetValueString");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP

Просмотреть файл

@ -195,8 +195,8 @@ nsSVGDefsFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGDefsFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
nsIAtom *

Просмотреть файл

@ -166,8 +166,8 @@ nsSVGGenericContainerFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGGenericContainerFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP

Просмотреть файл

@ -321,8 +321,8 @@ nsSVGInnerSVGFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGInnerSVGFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP

Просмотреть файл

@ -748,8 +748,8 @@ nsSVGOuterSVGFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGOuterSVGFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP

Просмотреть файл

@ -379,8 +379,8 @@ nsSVGTSpanFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTSpanFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------

Просмотреть файл

@ -440,8 +440,8 @@ nsSVGTextFrame::ReplaceFrame(nsIAtom* aListName,
nsIFrame* aOldFrame,
nsIFrame* aNewFrame)
{
NS_NOTYETIMPLEMENTED("write me!");
return NS_ERROR_UNEXPECTED;
NS_NOTYETIMPLEMENTED("nsSVGTextFrame::ReplaceFrame");
return NS_ERROR_NOT_IMPLEMENTED;
}
//----------------------------------------------------------------------