From kde-commits Wed Jun 25 19:59:36 2008 From: Maks Orlovich Date: Wed, 25 Jun 2008 19:59:36 +0000 To: kde-commits Subject: branches/KDE/4.0/kdelibs/khtml/xml Message-Id: <1214423976.995325.15153.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121442402027928 SVN commit 824445 by orlovich: automatically merged revision 824444: Handle these properly here. This avoids triggers an assert in CSSStyleSelector when a noscript is cloned, which is causes by a non-html element with an HTML ID M +3 -0 dom_docimpl.cpp --- branches/KDE/4.0/kdelibs/khtml/xml/dom_docimpl.cpp #824444:824445 @@ -1075,6 +1075,9 @@ case ID_NOBR: case ID_BDO: case ID_NOFRAMES: + case ID_NOSCRIPT: + case ID_NOEMBED: + case ID_NOLAYER: n = new HTMLGenericElementImpl(docPtr(), id); break;