Bug 1356317: Support remote layer trees in popups. r=kmag

This commit is contained in:
Stephen A Pohl 2017-06-29 14:37:51 -07:00
Родитель 9f97858792
Коммит 0c56cc9a61
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -421,6 +421,9 @@ class ViewPopup extends BasePopup {
// be swapped with the browser in the real panel when it's ready.
let panel = document.createElement("panel");
panel.setAttribute("type", "arrow");
if (extension.remote) {
panel.setAttribute("remote", "true");
}
document.getElementById("mainPopupSet").appendChild(panel);
super(extension, panel, popupURL, browserStyle, fixedWidth, blockParser);