mshtml: Added moz-safe-about to the list of Gecko internal protocols.

This commit is contained in:
Jacek Caban 2010-12-30 23:29:11 +01:00 committed by Alexandre Julliard
parent d0191cb132
commit b7e78af4de
1 changed files with 1 additions and 1 deletions

View File

@ -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++) {