mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 617739 - Regression: blank start page should load in a remote tab [r=mfinkle]
This commit is contained in:
parent
0246f3639f
commit
7c8ae7e9d4
@ -118,7 +118,7 @@ let Util = {
|
||||
},
|
||||
|
||||
isLocalScheme: function isLocalScheme(aURL) {
|
||||
return (aURL.indexOf("about:") == 0 && aURL != "about:blank") || aURL.indexOf("chrome:") == 0;
|
||||
return (aURL.indexOf("about:") == 0 && aURL != "about:blank" && aURL != "about:empty") || aURL.indexOf("chrome:") == 0;
|
||||
},
|
||||
|
||||
isShareableScheme: function isShareableScheme(aProtocol) {
|
||||
|
Loading…
Reference in New Issue
Block a user