コード例 #1
0
PassRefPtr<HTMLCollection> HTMLDataListElement::options()
{
    return ensureCachedHTMLCollection(DataListOptions);
}
コード例 #2
0
PassRefPtr<HTMLCollection> HTMLFieldSetElement::elements()
{
    return ensureCachedHTMLCollection(FormControls);
}
コード例 #3
0
PassRefPtr<HTMLCollection> HTMLElement::children()
{
    return ensureCachedHTMLCollection(NodeChildren);
}
コード例 #4
0
PassRefPtrWillBeRawPtr<HTMLCollection> HTMLMapElement::areas()
{
    return ensureCachedHTMLCollection(MapAreas);
}
コード例 #5
0
PassRefPtr<HTMLPropertiesCollection> HTMLElement::properties()
{
    return static_cast<HTMLPropertiesCollection*>(ensureCachedHTMLCollection(ItemProperties).get());
}
コード例 #6
0
PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableRowElement::cells()
{
    return ensureCachedHTMLCollection(TRCells);
}
コード例 #7
0
PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableSectionElement::rows()
{
    return ensureCachedHTMLCollection(TSectionRows);
}