Commit f46c3997 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Return text/html by default in GetContentType.

parent 2218bfcc
......@@ -480,8 +480,9 @@ static nsresult NSAPI nsChannel_GetContentType(nsIHttpChannel *iface, nsACString
if(This->channel)
return nsIChannel_GetContentType(This->channel, aContentType);
FIXME("default action not implemented\n");
return NS_ERROR_NOT_IMPLEMENTED;
TRACE("returning default text/html\n");
nsACString_Init(aContentType, "text/html");
return NS_OK;
}
static nsresult NSAPI nsChannel_SetContentType(nsIHttpChannel *iface,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment