Ensure that |this| is correct when calling FindProxyForURL. bug 336313, r=darin sr+a=dveditz

git-svn-id: svn://10.0.0.236/trunk@195858 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mrbkap%gmail.com
2006-05-03 00:22:13 +00:00
parent 164e486286
commit 4ddae2d565

View File

@@ -96,7 +96,7 @@ nsProxyAutoConfig.prototype = {
return null;
// Call the original function
return this._findProxyForURL(testURI, testHost);
return this._findProxyForURL.call(this._sandBox, testURI, testHost);
}
}