Jacek Caban : mshtml: Added moz-safe-about to the list of Gecko internal protocols.
Module: wine Branch: master Commit: b7e78af4de0559b2802ff10ab0414799155ada77 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b7e78af4de0559b2802ff10ab0... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Dec 30 23:29:11 2010 +0100 mshtml: Added moz-safe-about to the list of Gecko internal protocols. --- dlls/mshtml/nsio.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index 7f1cad0..30185dd 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -2677,7 +2677,7 @@ static nsresult NSAPI nsIOService_GetProtocolFlags(nsIIOService *iface, const ch static BOOL is_gecko_special_uri(const char *spec) { - static const char *special_schemes[] = {"chrome:", "jar:", "resource:", "javascript:", "wyciwyg:"}; + static const char *special_schemes[] = {"chrome:", "jar:", "moz-safe-about", "resource:", "javascript:", "wyciwyg:"}; int i; for(i=0; i < sizeof(special_schemes)/sizeof(*special_schemes); i++) {
participants (1)
-
Alexandre Julliard