Home | History | Annotate | Download | only in web

Lines Matching refs:Element

35 #include "core/dom/Element.h"
52 return constUnwrap<Element>()->isFormControlElement();
57 return constUnwrap<Element>()->isTextFormControl();
62 return constUnwrap<Element>()->tagName();
67 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
78 const Element* element = constUnwrap<Element>();
79 return HTMLNames::xhtmlNamespaceURI == element->namespaceURI() && element->localName() == String(tagName).lower();
84 return constUnwrap<Element>()->hasAttribute(attrName);
89 // TODO: Custom element callbacks need to be called on WebKit API methods that
92 unwrap<Element>()->removeAttribute(attrName);
97 return constUnwrap<Element>()->getAttribute(attrName);
102 // TODO: Custom element callbacks need to be called on WebKit API methods that
106 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionState);
112 if (!constUnwrap<Element>()->hasAttributes())
114 return constUnwrap<Element>()->attributeCount();
119 ShadowRoot* shadowRoot = constUnwrap<Element>()->shadowRoot();
129 return constUnwrap<Element>()->attributeAt(index).localName();
136 return constUnwrap<Element>()->attributeAt(index).value();
141 return unwrap<Element>()->innerText();
146 return WebString(constUnwrap<Element>()->computeInheritedLanguage());
151 unwrap<Element>()->webkitRequestFullScreen(Element::ALLOW_KEYBOARD_INPUT);
156 return unwrap<Element>()->boundsInRootViewSpace();
164 WebCore::Image* image = unwrap<Element>()->imageContents();
175 WebElement::WebElement(const PassRefPtrWillBeRawPtr<Element>& elem)
180 WebElement& WebElement::operator=(const PassRefPtrWillBeRawPtr<Element>& elem)
186 WebElement::operator PassRefPtrWillBeRawPtr<Element>() const