зеркало из https://github.com/mozilla/gecko-dev.git
Bug 300642. Fix regression from fastback that broke page loading in screen readers. r+sr=bryner, a=asa
This commit is contained in:
Родитель
d81d88d2ab
Коммит
3237d883cc
|
@ -6270,9 +6270,16 @@ PresShell::HandleEventInternal(nsEvent* aEvent, nsIView *aView,
|
|||
#ifdef ACCESSIBILITY
|
||||
if (aEvent->eventStructType == NS_ACCESSIBLE_EVENT)
|
||||
{
|
||||
NS_STATIC_CAST(nsAccessibleEvent*, aEvent)->accessible = nsnull;
|
||||
nsCOMPtr<nsIAccessibilityService> accService =
|
||||
do_GetService("@mozilla.org/accessibilityService;1");
|
||||
if (accService) {
|
||||
nsCOMPtr<nsISupports> container = mPresContext->GetContainer();
|
||||
if (!container) {
|
||||
// This presshell is not active. This often happens when a
|
||||
// preshell is being held onto for fastback.
|
||||
return NS_OK;
|
||||
}
|
||||
nsIAccessible* acc;
|
||||
nsCOMPtr<nsIDOMNode> domNode(do_QueryInterface(mDocument));
|
||||
NS_ASSERTION(domNode, "No dom node for doc");
|
||||
|
|
|
@ -838,7 +838,7 @@ NS_IMETHODIMP nsWindow::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
|||
//
|
||||
//-------------------------------------------------------------------------
|
||||
#ifdef ACCESSIBILITY
|
||||
nsWindow::nsWindow() : nsBaseWidget(), mRootAccessible(NULL)
|
||||
nsWindow::nsWindow() : nsBaseWidget()
|
||||
#else
|
||||
nsWindow::nsWindow() : nsBaseWidget()
|
||||
#endif
|
||||
|
@ -1614,10 +1614,6 @@ NS_METHOD nsWindow::Create(nsNativeWidget aParent,
|
|||
//-------------------------------------------------------------------------
|
||||
NS_METHOD nsWindow::Destroy()
|
||||
{
|
||||
#ifdef ACCESSIBILITY
|
||||
ClearRootAccessible();
|
||||
#endif
|
||||
|
||||
// Switch to the "main gui thread" if necessary... This method must
|
||||
// be executed on the "gui thread"...
|
||||
nsToolkit* toolkit = (nsToolkit *)mToolkit;
|
||||
|
@ -4604,7 +4600,8 @@ PRBool nsWindow::ProcessMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT
|
|||
}
|
||||
#ifdef ACCESSIBILITY
|
||||
if (nsWindow::gIsAccessibilityOn) {
|
||||
CreateRootAccessible();
|
||||
// Create it for the first time so that it can start firing events
|
||||
GetRootAccessible();
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
|
@ -4875,14 +4872,14 @@ PRBool nsWindow::ProcessMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT
|
|||
case WM_GETOBJECT:
|
||||
{
|
||||
LRESULT lAcc = 0;
|
||||
CreateRootAccessible();
|
||||
if (mRootAccessible) {
|
||||
nsIAccessible *rootAccessible = GetRootAccessible();
|
||||
if (rootAccessible) {
|
||||
IAccessible *msaaAccessible = NULL;
|
||||
if (lParam == OBJID_CLIENT) { // oleacc.dll will be loaded dynamically
|
||||
mRootAccessible->GetNativeInterface((void**)&msaaAccessible); // does an addref
|
||||
rootAccessible->GetNativeInterface((void**)&msaaAccessible); // does an addref
|
||||
}
|
||||
else if (lParam == OBJID_CARET) { // each root accessible owns a caret accessible
|
||||
nsCOMPtr<nsIAccessibleDocument> accDoc(do_QueryInterface(mRootAccessible));
|
||||
nsCOMPtr<nsIAccessibleDocument> accDoc(do_QueryInterface(rootAccessible));
|
||||
if (accDoc) {
|
||||
nsCOMPtr<nsIAccessible> accessibleCaret;
|
||||
accDoc->GetCaretAccessible(getter_AddRefs(accessibleCaret));
|
||||
|
@ -7801,55 +7798,41 @@ nsWindow :: DealWithPopups ( HWND inWnd, UINT inMsg, WPARAM inWParam, LPARAM inL
|
|||
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
void nsWindow::CreateRootAccessible()
|
||||
nsIAccessible* nsWindow::GetRootAccessible()
|
||||
{
|
||||
nsWindow::gIsAccessibilityOn = TRUE;
|
||||
|
||||
if (mIsDestroying || mOnDestroyCalled || mWindowType == eWindowType_invisible) {
|
||||
if (mRootAccessible) {
|
||||
ClearRootAccessible();
|
||||
}
|
||||
return;
|
||||
return nsnull;
|
||||
}
|
||||
|
||||
// Create this as early as possible in new window, if accessibility is turned on
|
||||
// We need it to be created early so it can generate accessibility events right away
|
||||
nsIAccessible *rootAccessible = nsnull;
|
||||
|
||||
if (!mRootAccessible) {
|
||||
// If accessibility is turned on, we create this even before it is requested
|
||||
// when the window gets focused. We need it to be created early so it can
|
||||
// generate accessibility events right away
|
||||
nsWindow* accessibleWindow = nsnull;
|
||||
if (mContentType != eContentTypeInherit) {
|
||||
// Windows that wrap content or UI client areas should use their child client's
|
||||
// accessibility info
|
||||
if (mWnd) {
|
||||
HWND firstChild = ::FindWindowEx(mWnd, NULL, kClassNameGeneral, NULL);
|
||||
if (firstChild) {
|
||||
accessibleWindow = GetNSWindowPtr(firstChild);
|
||||
// We're on a MozillaContentWindowClass or MozillaUIWindowClass window.
|
||||
// Search for the correct visible child window to get an accessible
|
||||
// document from. Make sure to use an active child window
|
||||
HWND accessibleWnd = ::GetTopWindow(mWnd);
|
||||
while (accessibleWnd) {
|
||||
// Loop through windows and find the first one with accessibility info
|
||||
accessibleWindow = GetNSWindowPtr(accessibleWnd);
|
||||
if (accessibleWindow) {
|
||||
accessibleWindow->DispatchAccessibleEvent(NS_GETACCESSIBLE, &rootAccessible);
|
||||
if (rootAccessible) {
|
||||
break; // Success, one of the child windows was active
|
||||
}
|
||||
}
|
||||
accessibleWnd = ::GetNextWindow(accessibleWnd, GW_HWNDNEXT);
|
||||
}
|
||||
}
|
||||
else {
|
||||
accessibleWindow = this;
|
||||
}
|
||||
if (accessibleWindow) {
|
||||
accessibleWindow->DispatchAccessibleEvent(NS_GETACCESSIBLE, &mRootAccessible);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void nsWindow::ClearRootAccessible()
|
||||
{
|
||||
if (mRootAccessible) {
|
||||
NS_RELEASE(mRootAccessible);
|
||||
mRootAccessible = nsnull;
|
||||
}
|
||||
// Recursively clear out all the windows holding this same root accessible
|
||||
if (mWnd && mContentType == eContentTypeInherit) {
|
||||
HWND parent = ::GetParent(mWnd);
|
||||
nsWindow *parentWidget = GetNSWindowPtr(parent);
|
||||
if (parentWidget) {
|
||||
parentWidget->ClearRootAccessible();
|
||||
}
|
||||
DispatchAccessibleEvent(NS_GETACCESSIBLE, &rootAccessible);
|
||||
}
|
||||
return rootAccessible;
|
||||
}
|
||||
|
||||
HINSTANCE nsWindow::gmAccLib = 0;
|
||||
|
|
|
@ -417,8 +417,7 @@ public:
|
|||
virtual PRBool DispatchMouseEvent(PRUint32 aEventType, WPARAM wParam = NULL, nsPoint* aPoint = nsnull);
|
||||
#ifdef ACCESSIBILITY
|
||||
virtual PRBool DispatchAccessibleEvent(PRUint32 aEventType, nsIAccessible** aAccessible, nsPoint* aPoint = nsnull);
|
||||
void CreateRootAccessible();
|
||||
void ClearRootAccessible();
|
||||
nsIAccessible* GetRootAccessible();
|
||||
#endif
|
||||
virtual PRBool AutoErase();
|
||||
nsPoint* GetLastPoint() { return &mLastPoint; }
|
||||
|
@ -703,7 +702,6 @@ protected:
|
|||
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
nsIAccessible* mRootAccessible;
|
||||
static BOOL gIsAccessibilityOn;
|
||||
static HINSTANCE gmAccLib;
|
||||
static LPFNLRESULTFROMOBJECT gmLresultFromObject;
|
||||
|
|
Загрузка…
Ссылка в новой задаче