Bug 932804 - Fix oop frame tapping bug, r=dburns

This commit is contained in:
Malini Das 2014-05-07 17:01:07 -04:00
Родитель b79760c359
Коммит a5d6a11b99
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -22,7 +22,7 @@ let remoteFrames = [];
*/
function MarionetteRemoteFrame(windowId, frameId) {
this.windowId = windowId; //outerWindowId relative to main process
this.frameId = frameId ? frameId : null; //actual frame relative to windowId's frames list
this.frameId = frameId; //actual frame relative to windowId's frames list
this.targetFrameId = this.frameId; //assigned FrameId, used for messaging
};