bug 1219528 - don't bail out of AccessibleWrap::accNavigate if the accessible wraps a proxy r=davidb

This commit is contained in:
Trevor Saunders 2015-10-28 18:18:28 -04:00
parent d758387279
commit 13fbb06532

View File

@ -1018,10 +1018,6 @@ AccessibleWrap::accNavigate(
if (accessible->IsDefunct())
return CO_E_OBJNOTCONNECTED;
// TODO make this work with proxies.
if (IsProxy())
return E_NOTIMPL;
Accessible* navAccessible = nullptr;
Maybe<RelationType> xpRelation;