Esempio n. 1
0
WebElementCollection WebInputElement::dataListOptions() const
{
    if (HTMLDataListElement* dataList = toHTMLDataListElement(constUnwrap<HTMLInputElement>()->list()))
        return WebElementCollection(dataList->options());
    return WebElementCollection();
}
Esempio n. 2
0
WebElementCollection WebDocument::all() {
  return WebElementCollection(unwrap<Document>()->all());
}