Home | History | Annotate | Download | only in web

Lines Matching refs:element

44     // Provides readonly access to some properties of a DOM input element node.
48 WebInputElement(const WebInputElement& element) : WebFormControlElement(element) { }
50 WebInputElement& operator=(const WebInputElement& element)
52 WebFormControlElement::assign(element);
55 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); }
86 // If true, forces the text of the element to be visible.
98 inline const WebInputElement* toWebInputElement(const WebElement* element)
100 return toWebInputElement(const_cast<WebElement*>(element));