Bug 93016. Support STATE_ANIMATED for images in Active Accessibility API. r=jgaunt, sr=scc

git-svn-id: svn://10.0.0.236/trunk@100982 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
aaronl%netscape.com 2001-08-14 02:27:30 +00:00
parent 05ae867e98
commit df2434f6cd
2 changed files with 10 additions and 12 deletions

View File

@ -30,10 +30,9 @@
#include "nsIDOMHTMLCollection.h"
#include "nsIAccessibilityService.h"
#include "nsIServiceManager.h"
//#include "imgIRequest.h"
//#include "imgIContainer.h"
//#include "nsIImageFrame.h"
// #include "nsIImageRequest.h"
#include "imgIRequest.h"
#include "imgIContainer.h"
#include "nsIImageFrame.h"
// --- image -----
@ -65,7 +64,7 @@ NS_IMETHODIMP nsHTMLImageAccessible::GetAccState(PRUint32 *_retval)
// is an animated image.
nsLinkableAccessible::GetAccState(_retval);
/*
nsCOMPtr<nsIContent> content(do_QueryInterface(mDOMNode));
nsCOMPtr<nsIPresShell> shell(do_QueryReferent(mPresShell));
nsIFrame *frame = nsnull;
@ -88,7 +87,7 @@ NS_IMETHODIMP nsHTMLImageAccessible::GetAccState(PRUint32 *_retval)
if (numFrames > 1)
*_retval |= STATE_ANIMATED;
}
*/
return NS_OK;
}

View File

@ -30,10 +30,9 @@
#include "nsIDOMHTMLCollection.h"
#include "nsIAccessibilityService.h"
#include "nsIServiceManager.h"
//#include "imgIRequest.h"
//#include "imgIContainer.h"
//#include "nsIImageFrame.h"
// #include "nsIImageRequest.h"
#include "imgIRequest.h"
#include "imgIContainer.h"
#include "nsIImageFrame.h"
// --- image -----
@ -65,7 +64,7 @@ NS_IMETHODIMP nsHTMLImageAccessible::GetAccState(PRUint32 *_retval)
// is an animated image.
nsLinkableAccessible::GetAccState(_retval);
/*
nsCOMPtr<nsIContent> content(do_QueryInterface(mDOMNode));
nsCOMPtr<nsIPresShell> shell(do_QueryReferent(mPresShell));
nsIFrame *frame = nsnull;
@ -88,7 +87,7 @@ NS_IMETHODIMP nsHTMLImageAccessible::GetAccState(PRUint32 *_retval)
if (numFrames > 1)
*_retval |= STATE_ANIMATED;
}
*/
return NS_OK;
}