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