mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 767389 - about:home and about:newtab are intermittently shown in the Debugger dropdown; r=past
This commit is contained in:
parent
d45a8a73cd
commit
3356a29ccb
@ -935,6 +935,10 @@ ThreadActor.prototype = {
|
|||||||
if (aScript.url.indexOf("chrome://") == 0) {
|
if (aScript.url.indexOf("chrome://") == 0) {
|
||||||
return;
|
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
|
// Use a sparse array for storing the scripts for each URL in order to
|
||||||
// optimize retrieval.
|
// optimize retrieval.
|
||||||
if (!this._scripts[aScript.url]) {
|
if (!this._scripts[aScript.url]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user