SVN commit 722108 by carewolf: Attribute selectors should be namespace aware M +2 -1 cssstyleselector.cpp --- trunk/KDE/kdelibs/khtml/css/cssstyleselector.cpp #722107:722108 @@ -1127,7 +1127,8 @@ if(sel->attr) { - DOMStringImpl* value = e->getAttributeImpl(sel->attr); + bool nsAware = (namespacePart(sel->attr) != anyNamespace); + DOMStringImpl* value = e->getAttributeImpl(sel->attr, nsAware); if(!value) return false; // attribute is not set // attributes are always case-sensitive in XHTML