mshtml: Fix typo.

This commit is contained in:
Vitaliy Margolen 2007-09-21 21:43:13 -06:00 committed by Alexandre Julliard
parent 479078a5b3
commit 201e03b87a
1 changed files with 1 additions and 1 deletions

View File

@ -1291,7 +1291,7 @@ HTMLElement *HTMLElement_Create(nsIDOMNode *nsnode)
ret = HTMLBodyElement_Create(nselem);
else if(!strcmpW(class_name, wszINPUT))
ret = HTMLInputElement_Create(nselem);
if(!strcmpW(class_name, wszSELECT))
else if(!strcmpW(class_name, wszSELECT))
ret = HTMLSelectElement_Create(nselem);
else if(!strcmpW(class_name, wszTEXTAREA))
ret = HTMLTextAreaElement_Create(nselem);