Bug 970995 - Activate devtools-layers tracking for the system app. r=janx

This commit is contained in:
Vivien Nicolas 2014-02-15 01:45:45 +01:00
Родитель 8105e38ed9
Коммит 814a00d5be
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -69,8 +69,12 @@ let devtoolsWidgetPanel = {
Services.obs.addObserver(this, 'in-process-browser-or-app-frame-shown', false);
Services.obs.addObserver(this, 'message-manager-disconnect', false);
let systemapp = document.querySelector('#systemapp').contentWindow;
let frames = systemapp.document.querySelectorAll('iframe[mozapp]');
let systemapp = document.querySelector('#systemapp');
let manifestURL = systemapp.getAttribute("mozapp");
this.trackApp(manifestURL);
let frames =
systemapp.contentWindow.document.querySelectorAll('iframe[mozapp]');
for (let frame of frames) {
let manifestURL = frame.getAttribute("mozapp");
this.trackApp(manifestURL);