本文整理汇总了C++中webcore::Element::toInputElement方法的典型用法代码示例。如果您正苦于以下问题:C++ Element::toInputElement方法的具体用法?C++ Element::toInputElement怎么用?C++ Element::toInputElement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类webcore::Element
的用法示例。
在下文中一共展示了Element::toInputElement方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setAutofilled
void DumpRenderTreeSupportQt::setAutofilled(const QWebElement& element, bool isAutofilled)
{
WebCore::Element* webElement = element.m_element;
if (!webElement)
return;
HTMLInputElement* inputElement = webElement->toInputElement();
if (!inputElement)
return;
inputElement->setAutofilled(isAutofilled);
}
示例2: setValueForUser
void DumpRenderTreeSupportQt::setValueForUser(const QWebElement& element, const QString& value)
{
WebCore::Element* webElement = element.m_element;
if (!webElement)
return;
HTMLInputElement* inputElement = webElement->toInputElement();
if (!inputElement)
return;
inputElement->setValueForUser(value);
}
示例3: setAutofilled
void DumpRenderTreeSupportEfl::setAutofilled(JSContextRef context, JSValueRef nodeObject, bool autofilled)
{
JSC::ExecState* exec = toJS(context);
WebCore::Element* element = WebCore::toElement(toJS(exec, nodeObject));
if (!element)
return;
WebCore::HTMLInputElement* inputElement = element->toInputElement();
if (!inputElement)
return;
inputElement->setAutofilled(autofilled);
}
示例4: setValueForUser
void DumpRenderTreeSupportEfl::setValueForUser(JSContextRef context, JSValueRef nodeObject, const String& value)
{
JSC::ExecState* exec = toJS(context);
WebCore::Element* element = WebCore::toElement(toJS(exec, nodeObject));
if (!element)
return;
WebCore::HTMLInputElement* inputElement = element->toInputElement();
if (!inputElement)
return;
inputElement->setValueForUser(value);
}
示例5: setAutofilled
void LayoutTestController::setAutofilled(JSContextRef context, JSValueRef nodeObject, bool autofilled)
{
JSC::ExecState* exec = toJS(context);
WebCore::Element* element = toElement(toJS(exec, nodeObject));
if (!element)
return;
WebCore::HTMLInputElement* inputElement = element->toInputElement();
if (!inputElement)
return;
inputElement->setAutofilled(autofilled);
}