Home | History | Annotate | Download | only in html

Lines Matching defs:HTMLOptionElement

28 #include "core/html/HTMLOptionElement.h"
49 HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document* document)
59 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(Document* document)
61 return adoptRef(new HTMLOptionElement(optionTag, document));
64 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(const QualifiedName& tagName, Document* document)
66 return adoptRef(new HTMLOptionElement(tagName, document));
69 PassRefPtr<HTMLOptionElement> HTMLOptionElement::createForJSConstructor(Document* document, const String& data, const String& value,
72 RefPtr<HTMLOptionElement> element = adoptRef(new HTMLOptionElement(optionTag, document));
89 void HTMLOptionElement::attach(const AttachContext& context)
99 void HTMLOptionElement::detach(const AttachContext& context)
105 bool HTMLOptionElement::rendererIsFocusable() const
111 String HTMLOptionElement::text() const
131 void HTMLOptionElement::setText(const String &text, ExceptionState& es)
155 void HTMLOptionElement::accessKeyAction(bool)
162 int HTMLOptionElement::index() const
185 void HTMLOptionElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
205 String HTMLOptionElement::value() const
213 void HTMLOptionElement::setValue(const String& value)
218 bool HTMLOptionElement::selected()
235 void HTMLOptionElement::setSelected(bool selected)
246 void HTMLOptionElement::setSelectedState(bool selected)
258 void HTMLOptionElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
267 HTMLDataListElement* HTMLOptionElement::ownerDataListElement() const
276 HTMLSelectElement* HTMLOptionElement::ownerSelectElement() const
288 String HTMLOptionElement::label() const
296 void HTMLOptionElement::setLabel(const String& label)
301 void HTMLOptionElement::updateNonRenderStyle()
306 RenderStyle* HTMLOptionElement::nonRendererStyle() const
311 PassRefPtr<RenderStyle> HTMLOptionElement::customStyleForRenderer()
319 void HTMLOptionElement::didRecalcStyle(StyleChange)
329 String HTMLOptionElement::textIndentedToRespectGroupLabel() const
337 bool HTMLOptionElement::isDisabledFormControl() const
346 Node::InsertionNotificationRequest HTMLOptionElement::insertedInto(ContainerNode* insertionPoint)
362 String HTMLOptionElement::collectOptionInnerText() const