SVN commit 484459 by orlovich: Fix createElement("embed") to fix crash on lotoquebec.com (#110036) BUG:110036 M +3 -0 dom_docimpl.cpp --- branches/KDE/3.5/kdelibs/khtml/xml/dom_docimpl.cpp #484458:484459 @@ -846,6 +846,9 @@ case ID_OBJECT: n = new HTMLObjectElementImpl(docPtr()); break; + case ID_EMBED: + n = new HTMLEmbedElementImpl(docPtr()); + break; case ID_PARAM: n = new HTMLParamElementImpl(docPtr()); break;