зеркало из https://github.com/mozilla/gecko-dev.git
Bug 767389 - about:home and about:newtab are intermittently shown in the Debugger dropdown; r=past
This commit is contained in:
Родитель
da0f8a98bb
Коммит
cb8e22fdfb
|
@ -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]) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче