Bug 1379951: Remove problematic assertion for a code path that is expected to be followed by NVDA; r=eeejay

MozReview-Commit-ID: DM6hVlC4RCg
This commit is contained in:
Aaron Klotz 2017-07-21 10:42:39 -06:00
Родитель 0abf86be7c
Коммит 4d4f358bf9
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -1445,8 +1445,6 @@ AccessibleWrap::GetIAccessibleFor(const VARIANT& aVarChild, bool* aIsDefunct)
if (XRE_IsParentProcess() && !IsProxy() && !sIDGen.IsChromeID(varChild.lVal)) { if (XRE_IsParentProcess() && !IsProxy() && !sIDGen.IsChromeID(varChild.lVal)) {
return GetRemoteIAccessibleFor(varChild); return GetRemoteIAccessibleFor(varChild);
} }
MOZ_ASSERT(XRE_IsParentProcess() ||
sIDGen.IsIDForThisContentProcess(varChild.lVal));
if (varChild.lVal > 0) { if (varChild.lVal > 0) {
// Gecko child indices are 0-based in contrast to indices used in MSAA. // Gecko child indices are 0-based in contrast to indices used in MSAA.