HomeSort by relevance Sort by last modified time
    Searched defs:HTMLOptionElement (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLOptionElement.h 34 class HTMLOptionElement : public HTMLFormControlElement, public OptionElement {
39 static PassRefPtr<HTMLOptionElement> create(Document*, HTMLFormElement*);
40 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*, HTMLFormElement*);
41 static PassRefPtr<HTMLOptionElement> createForJSConstructor(Document*, const String& data, const String& value,
67 HTMLOptionElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
HTMLOptionElement.cpp 27 #include "HTMLOptionElement.h"
45 HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
51 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(Document* document, HTMLFormElement* form)
53 return adoptRef(new HTMLOptionElement(optionTag, document, form));
56 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
58 return adoptRef(new HTMLOptionElement(tagName, document, form));
61 PassRefPtr<HTMLOptionElement> HTMLOptionElement::createForJSConstructor(Document* document, const String& data, const String& v (…)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebOptionElement.cpp 35 #include "HTMLOptionElement.h"
46 return unwrap<HTMLOptionElement>()->setValue(newValue);
51 return constUnwrap<HTMLOptionElement>()->value();
56 return constUnwrap<HTMLOptionElement>()->index();
61 return constUnwrap<HTMLOptionElement>()->text();
66 return constUnwrap<HTMLOptionElement>()->defaultSelected();
71 return unwrap<HTMLOptionElement>()->setDefaultSelected(newSelected);
76 return constUnwrap<HTMLOptionElement>()->label();
81 return !(constUnwrap<HTMLOptionElement>()->disabled());
84 WebOptionElement::WebOptionElement(const PassRefPtr<HTMLOptionElement>& elem
    [all...]

Completed in 119 milliseconds