mshtml: Treat "data:" as Gecko special URI scheme.
This enables loading of inline content specified as data: URI, such as background images. Signed-off-by: Joachim Priesner <joachim.priesner@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bd8a7f9e5d
commit
e7fc477921
|
@ -3545,7 +3545,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:", "moz-safe-about", "resource:", "javascript:", "wyciwyg:"};
|
||||
static const char *special_schemes[] = {"chrome:", "data:", "jar:", "moz-safe-about", "resource:", "javascript:", "wyciwyg:"};
|
||||
unsigned int i;
|
||||
|
||||
for(i=0; i < sizeof(special_schemes)/sizeof(*special_schemes); i++) {
|
||||
|
|
Loading…
Reference in New Issue