mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
3dec324930
MozReview-Commit-ID: GWz3Mwj07Wf --HG-- extra : rebase_source : 3281fef98230010966c5759fd8b8e186aeade50c
34 lines
789 B
C++
34 lines
789 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "AccessibleOrProxy.h"
|
|
|
|
namespace mozilla {
|
|
namespace a11y {
|
|
|
|
AccessibleOrProxy
|
|
AccessibleOrProxy::Parent() const
|
|
{
|
|
if (IsAccessible()) {
|
|
return AsAccessible()->Parent();
|
|
}
|
|
|
|
ProxyAccessible* proxy = AsProxy();
|
|
if (!proxy) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (ProxyAccessible* parent = proxy->Parent()) {
|
|
return parent;
|
|
}
|
|
|
|
// Otherwise this should be the proxy for the tab's top level document.
|
|
return proxy->OuterDocOfRemoteBrowser();
|
|
}
|
|
|
|
}
|
|
}
|