Home | History | Annotate | Download | only in custom

Lines Matching refs:OPTION

56         return throwError("Option constructor associated frame is unavailable", V8Proxy::ReferenceError);
60 return throwError("Option constructor associated document is unavailable", V8Proxy::ReferenceError);
62 RefPtr<HTMLOptionElement> option = new HTMLOptionElement(HTMLNames::optionTag, document);
73 option->appendChild(text.release(), ec);
79 option->setValue(toWebCoreString(args[1]));
82 option->setDefaultSelected(args[2]->BooleanValue());
84 option->setSelected(args[3]->BooleanValue());
89 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::OPTION), option.get());
90 option->ref();
91 V8DOMWrapper::setJSWrapperForDOMNode(option.get(), v8::Persistent<v8::Object>::New(args.Holder()));