зеркало из https://github.com/mozilla/gecko-dev.git
Bug 264370 - implement SVGDocument.rootElement. r=afri
This commit is contained in:
Родитель
7cc5e387b5
Коммит
ec2ea12bcc
|
@ -43,6 +43,8 @@
|
||||||
#include "nsString.h"
|
#include "nsString.h"
|
||||||
#include "nsLiteralString.h"
|
#include "nsLiteralString.h"
|
||||||
#include "nsReadableUtils.h"
|
#include "nsReadableUtils.h"
|
||||||
|
#include "nsIDOMSVGSVGElement.h"
|
||||||
|
#include "nsCOMPtr.h"
|
||||||
|
|
||||||
NS_INTERFACE_MAP_BEGIN(nsSVGDocument)
|
NS_INTERFACE_MAP_BEGIN(nsSVGDocument)
|
||||||
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGDocument)
|
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGDocument)
|
||||||
|
@ -103,9 +105,10 @@ nsSVGDocument::GetURL(nsAString& aURL) {
|
||||||
|
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
nsSVGDocument::GetRootElement(nsIDOMSVGSVGElement** aRootElement) {
|
nsSVGDocument::GetRootElement(nsIDOMSVGSVGElement** aRootElement) {
|
||||||
NS_NOTYETIMPLEMENTED("nsSVGDocument::GetRootElement");
|
nsCOMPtr<nsIDOMSVGSVGElement> root = do_QueryInterface(mRootContent);
|
||||||
// XXX - writeme
|
*aRootElement = root;
|
||||||
return NS_ERROR_NOT_IMPLEMENTED;
|
NS_IF_ADDREF(*aRootElement);
|
||||||
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
nsresult
|
nsresult
|
||||||
|
|
Загрузка…
Ссылка в новой задаче