Home | History | Annotate | Download | only in dom

Lines Matching full:namespaceuri

95 die "You must specify a namespaceURI (e.g. http://www.w3.org/2000/svg)" unless $parameters{namespaceURI};
146 'namespaceURI' => '',
364 # Mapped tag name uses a special wrapper to keep their prefix and namespaceURI while using the mapped localname.
369 printConstructorInterior($F, $mappedName, $enabledTags{$mappedName}{interfaceName}, "QualifiedName(tagName.prefix(), ${mappedName}Tag.localName(), tagName.namespaceURI())");
472 print F "extern const WTF::AtomicString ${lowerNamespace}NamespaceURI;\n\n";
526 DEFINE_GLOBAL(AtomicString, ${lowerNamespace}NamespaceURI, \"$parameters{namespaceURI}\")
532 print F "DEFINE_GLOBAL(QualifiedName, ", $name, "Tag, nullAtom, \"$name\", ${lowerNamespace}NamespaceURI);\n";
549 print F "DEFINE_GLOBAL(QualifiedName, ", $name, "Attr, nullAtom, \"$name\", ${lowerNamespace}NamespaceURI);\n";
574 print(F " AtomicString ${lowerNamespace}NS(\"$parameters{namespaceURI}\");\n\n");
577 print(F " new ((void*)&${lowerNamespace}NamespaceURI) AtomicString(${lowerNamespace}NS);\n\n");
668 my ($F, $namesRef, $type, $namespaceURI) = @_;
682 print F " new ((void*)&$name","${shortCamelType}) QualifiedName(nullAtom, \"$realName\", $namespaceURI);\n";