Mac 上的 Office 2016 用于任务窗格的浏览器是什么?

What browser does Office 2016 on Mac use for taskpanes?

我有一个 Word 加载项在 Windows 上运行良好,基础知识也在 Mac 上运行(两者都是 Word 2016)。

Mac 的 Word 2016 使用什么浏览器? 我看到这个 post:

但它没有明确定义 Mac 的方式。

我看到 post 有关清除缓存的内容,这很有帮助(这将是我的下一个挑战),例如

我问的具体原因是尝试使用 Firebase 进行身份验证。在 Windows 上,因为 Word 2016 使用 IE11,在我的任务窗格中单击 登录(使用 Firebase 运行 显示)弹出打开 IE11...并通过任务窗格可识别完整的浏览器。

在 Mac 上,单击“登录”会打开我的默认浏览器...

或者我可以尝试将 Firebase 流程保持在任务窗格中...但不确定该怎么做:)

主要是好奇微软是如何在 Mac 上解决这个问题的。

对于 Mac,正在使用本机 WebKit 控件(https://developer.apple.com/reference/webkit/webview). Window.open or other popups will open in the default browser and not share cookies or have window.opener pointer to the WebKit control by default. This does not work in authentication scenarios. If you want the popup window to be opened in a separate WebKit control for authentication, you will need to include the trusted domain in the AppDomain list of the manifest: https://dev.office.com/reference/add-ins/manifest/appdomains。window.opener 并且 cookie 应该在弹出窗口和加载项之间工作。AppDomain 列表受支持每个平台。