Skip to content

Commit

Permalink
Debugging Fx24+ page load issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekensteyn committed Sep 9, 2013
1 parent cb47328 commit 42d243f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/install.rdf
Expand Up @@ -5,7 +5,7 @@

<em:id>{73a6fe31-595d-460b-a920-fcc0f8843232}</em:id>
<em:name>NoScript</em:name>
<em:version>3.5a4rc201306082147</em:version>
<em:version>3.5a4rc201306082147zzz</em:version>
<em:description>Extra protection for your Firefox: flexible trust-based blocking of scripts and plugins (blacklist or whitelist based), plus unique countermeasures against web-based attacks (XSS, Clickjacking and more).</em:description>
<em:creator>Giorgio Maone</em:creator>
<em:bootstrap>true</em:bootstrap>
Expand Down
1 change: 1 addition & 0 deletions src/noscript-nsa/modules/ABE.jsm
Expand Up @@ -289,6 +289,7 @@ const ABE = {
ABE.log(host + " not cached in DNS, deferring ABE checks after DNS resolution for request " + req.serial);

DNS.resolve(host, 0, function(dnsRecord) {
log("[ABE thingey] dnsRecord = " + JSON.stringify(dnsRecord));
req.dnsNotified = true; // prevents spurious notifications
replacement.open();
});
Expand Down
2 changes: 1 addition & 1 deletion src/noscript-nsa/modules/DNS.jsm
Expand Up @@ -70,7 +70,7 @@ var DNS = {
logFile.append("noscript_dns.log");
return this.logFile = logFile;
},
logEnabled: false,
logEnabled: true || false,
log: function(msg) {
try {
if (!this.logStream) {
Expand Down
3 changes: 2 additions & 1 deletion src/noscript-nsa/modules/Load.jsm
Expand Up @@ -86,7 +86,8 @@ Load.attach = function(channel) {
return last;
}
debug("Could not attach load info to " + channel.name + "\n" +
(last.location === channel.URI) + ", " + (last.location && last.location.spec) + "\n" +
(!last ? "(last is null)" :
(last.location === channel.URI) + ", " + (last.location && last.location.spec)) + "\n" +
channel instanceof Ci.nsIWritablePropertyBag2
);
return null;
Expand Down

0 comments on commit 42d243f

Please sign in to comment.