Commit 201e03b8 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

mshtml: Fix typo.

parent 479078a5
...@@ -1291,7 +1291,7 @@ HTMLElement *HTMLElement_Create(nsIDOMNode *nsnode) ...@@ -1291,7 +1291,7 @@ HTMLElement *HTMLElement_Create(nsIDOMNode *nsnode)
ret = HTMLBodyElement_Create(nselem); ret = HTMLBodyElement_Create(nselem);
else if(!strcmpW(class_name, wszINPUT)) else if(!strcmpW(class_name, wszINPUT))
ret = HTMLInputElement_Create(nselem); ret = HTMLInputElement_Create(nselem);
if(!strcmpW(class_name, wszSELECT)) else if(!strcmpW(class_name, wszSELECT))
ret = HTMLSelectElement_Create(nselem); ret = HTMLSelectElement_Create(nselem);
else if(!strcmpW(class_name, wszTEXTAREA)) else if(!strcmpW(class_name, wszTEXTAREA))
ret = HTMLTextAreaElement_Create(nselem); ret = HTMLTextAreaElement_Create(nselem);
......
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