Home | History | Annotate | Download | only in src

Lines Matching defs:Element

34 #include "Element.h"
47 return constUnwrap<Element>()->isFormControlElement();
52 return constUnwrap<Element>()->isTextFormControl();
57 return constUnwrap<Element>()->tagName();
62 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
68 return constUnwrap<Element>()->hasAttribute(attrName);
73 return constUnwrap<Element>()->getAttribute(attrName);
79 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
90 return constUnwrap<Element>()->innerText();
95 return adoptRef(static_cast<Node*>(unwrap<Element>()->shadowRoot()));
100 return WebString(constUnwrap<Element>()->computeInheritedLanguage());
103 WebElement::WebElement(const PassRefPtr<Element>& elem)
108 WebElement& WebElement::operator=(const PassRefPtr<Element>& elem)
114 WebElement::operator PassRefPtr<Element>() const
116 return static_cast<Element*>(m_private.get());