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

This commit is contained in:
Malini Das 2014-05-07 17:01:07 -04:00
parent b79760c359
commit a5d6a11b99

View File

@ -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
};