Closed
Bug 964711
Opened 12 years ago
Closed 12 years ago
"PAC Execution Error: isResolvableEx is not defined []"
Categories
(Core :: Networking, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 558253
People
(Reporter: agefen, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36
Steps to reproduce:
Set FF to use a PAC file
Actual results:
In the Error Console: "PAC Execution Error: isResolvableEx is not defined []"
Expected results:
isResolvableEx() should be executed.
Steps to reproduce:
Set FF to use a PAC file that uses isResolvableEx().
---
PAC file:
function FindProxyForURL(url, host)
{
.
.
.
if (isResolvableEx(host))
{
var resolve = dnsResolveEx(host);//return an array
}
.
.
.
}
Updated•12 years ago
|
Component: General → Networking
Product: Firefox → Core
Comment 2•12 years ago
|
||
We define isResolvable (http://mxr.mozilla.org/mozilla-central/source/netwerk/base/src/ProxyAutoConfig.cpp#70). What is isResolvableEx supposed to do?
Updated•12 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•