KHTML
Go to the documentation of this file.
24 #include "wtf/Platform.h"
33 SVGLangSpace::SVGLangSpace()
37 SVGLangSpace::~SVGLangSpace()
41 const AtomicString& SVGLangSpace::xmllang()
const
46 void SVGLangSpace::setXmllang(
const AtomicString& xmlLang)
51 const AtomicString& SVGLangSpace::xmlspace()
const
53 if (m_space.isNull()) {
54 static const AtomicString defaultString(
"default");
61 void SVGLangSpace::setXmlspace(
const AtomicString& xmlSpace)
66 bool SVGLangSpace::parseMappedAttribute(MappedAttribute* attr)
68 if (attr->id() == ATTR_XML_LANG) {
69 setXmllang(attr->value());
71 }
else if (attr->id() == ATTR_XML_SPACE) {
72 setXmlspace(attr->value());
79 bool SVGLangSpace::isKnownAttribute(
const QualifiedName& attrName)
81 return attrName.id() == ATTR_XML_LANG ||
82 attrName.id() == ATTR_XML_SPACE;
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by
doxygen 1.8.7 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.