mirror of
https://github.com/reactos/wine.git
synced 2025-01-19 10:13:01 +00:00
mshtml: Treat empty bstrHref as not specified in IHTMLDocument2::createStyleSheet.
This commit is contained in:
parent
894737ac55
commit
8bfbe61386
@ -1669,7 +1669,7 @@ static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR
|
||||
if(lIndex != -1)
|
||||
FIXME("Unsupported lIndex %d\n", lIndex);
|
||||
|
||||
if(bstrHref) {
|
||||
if(bstrHref && *bstrHref) {
|
||||
FIXME("semi-stub for href %s\n", debugstr_w(bstrHref));
|
||||
*ppnewStyleSheet = HTMLStyleSheet_Create(NULL);
|
||||
return S_OK;
|
||||
|
Loading…
x
Reference in New Issue
Block a user