Lines Matching refs:attribute

52         "error parsing attribute name\n", // name is an HTML5 attribute
53 "Unexpected end tag : blockquote\n", // name is an HTML5 attribute
191 $message = "There is big probability that there is an ampersand alone `&`. ie You forgot to call html/Xml entities in a `src` or `url` attribute.";
196 * inboolean attribute XML loading error
198 if (strpos($error->message, "Specification mandates value for attribute") !== false) {
199 $message = "Xml does not allow boolean attribute (ie without any value). If you skip this error, you will get a general attribute constructing error as next error. Load as HTML.";
275 * For instance, you would not get an error on boolean attribute
277 * Error while loading HTMLError: Specification mandates value for attribute defer
280 * https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute
448 // `namespace::*` means selects all the namespace attribute of the context node
518 function removeRootAttribute($attribute)
522 // $result = $this->getXmlDom()->documentElement->removeAttribute($attribute);
525 if ($this->getDomDocument()->documentElement->attributes[$i]->name == $attribute) {
528 throw new \RuntimeException("Not able to delete the $attribute");
530 // There is no break here because you may find multiple version attribute for instance
553 * Add a value to an attribute value
570 * because even if the dom element has the attribute, the value
691 LogUtility::msg("Not able to delete the attribute $attributeName of the node element $nodeElement->tagName in the Xml document");