Bug 767389 - about:home and about:newtab are intermittently shown in the Debugger dropdown; r=past

This commit is contained in:
Victor Porof 2012-07-15 09:50:41 +03:00
parent d45a8a73cd
commit 3356a29ccb

View File

@ -935,6 +935,10 @@ ThreadActor.prototype = {
if (aScript.url.indexOf("chrome://") == 0) {
return;
}
// Ignore about:* pages for content debugging.
if (aScript.url.indexOf("about:") == 0) {
return;
}
// Use a sparse array for storing the scripts for each URL in order to
// optimize retrieval.
if (!this._scripts[aScript.url]) {