Changeset 35887 in webkit


Ignore:
Timestamp:
Aug 21, 2008 7:20:13 PM (16 years ago)
Author:
mrowe@apple.com
Message:

2008-08-21 Jonas Klink <klinktech@gmail.com>

Reviewed by Jon Honeycutt.

Fix https://bugs.webkit.org/show_bug.cgi?id=20231
Bug 20231: accNavigate: no screen element found in the specified direction should return S_FALSE

Per <http://msdn.microsoft.com/en-us/library/ms696145(VS.85).aspx>, we should return S_FALSE
from accNavigate if no screen element is found in the specified direction.

  • AccessibleBase.cpp: (AccessibleBase::accNavigate):
Location:
trunk/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/AccessibleBase.cpp

    r35886 r35887  
    452452
    453453    if (!childObj)
    454         return E_FAIL;
     454        return S_FALSE;
    455455
    456456    V_VT(pvNavigatedTo) = VT_DISPATCH;
  • trunk/WebKit/win/ChangeLog

    r35886 r35887  
     12008-08-21 Jonas Klink <klinktech@gmail.com>
     2
     3        Reviewed by Jon Honeycutt.
     4
     5        Fix https://bugs.webkit.org/show_bug.cgi?id=20231
     6        Bug 20231: accNavigate: no screen element found in the specified direction should return S_FALSE
     7
     8        Per <http://msdn.microsoft.com/en-us/library/ms696145(VS.85).aspx>, we should return S_FALSE
     9        from accNavigate if no screen element is found in the specified direction.
     10
     11        * AccessibleBase.cpp:
     12        (AccessibleBase::accNavigate):
     13
    1142008-08-21 Jonas Klink <klinktech@gmail.com>
    215
Note: See TracChangeset for help on using the changeset viewer.