SVN commit 1076382 by ggarand: the empty string is as valid CSS namespace. cf. CSS3 Namespaces module - 3.1 : "All strings—including the empty string and strings representing invalid URIs—are valid namespace names in @namespace declarations. M +1 -1 css_stylesheetimpl.cpp --- trunk/KDE/kdelibs/khtml/css/css_stylesheetimpl.cpp #1076381:1076382 @@ -239,7 +239,7 @@ void CSSStyleSheetImpl::addNamespace(CSSParser* /*p*/, const DOM::DOMString& prefix, const DOM::DOMString& uri) { - if (uri.isEmpty()) + if (uri.isNull()) return; m_namespaces = new CSSNamespace(prefix, uri, m_namespaces);