HomeSort by relevance Sort by last modified time
    Searched refs:tFoot (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.idl 24 [SetterRaisesException] attribute HTMLTableSectionElement tFoot;
HTMLTableElement.h 50 HTMLTableSectionElement* tFoot() const;
HTMLTableRowElement.cpp 68 // Rows from the first <tfoot> are numbered after all <tbody> rows.
69 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
94 if (HTMLTableSectionElement* foot = toHTMLTableElement(table)->tFoot()) {
103 // We get here for rows that are in <thead> or <tfoot> sections other than the main header and footer.
HTMLTableElement.cpp 107 HTMLTableSectionElement* HTMLTableElement::tFoot() const
144 if (HTMLTableSectionElement* existingFoot = tFoot())
153 removeChild(tFoot(), IGNORE_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.cpp 112 // if there is a caption element, summary, THEAD, or TFOOT section, it's most certainly a data table
114 if (!tableElement->summary().isEmpty() || tableElement->tHead() || tableElement->tFoot() || tableElement->caption())
  /external/chromium_org/tools/code_coverage/third_party/
sorttable.js 57 // to do is put them in a tfoot. So, if there are sortbottom rows,
58 // for backwards compatibility, move them to tfoot (creating it if needed).
66 if (table.tFoot == null) {
67 // table doesn't have a tfoot. Create one.
68 tfo = document.createElement('tfoot');
  /external/clang/tools/scan-build/
sorttable.js 57 // to do is put them in a tfoot. So, if there are sortbottom rows,
58 // for backwards compatibility, move them to tfoot (creating it if needed).
66 if (table.tFoot == null) {
67 // table doesn't have a tfoot. Create one.
68 tfo = document.createElement('tfoot');
  /frameworks/base/tools/preload/
sorttable.js 57 // to do is put them in a tfoot. So, if there are sortbottom rows,
58 // for backwards compatibility, move them to tfoot (creating it if needed).
66 if (table.tFoot == null) {
67 // table doesn't have a tfoot. Create one.
68 tfo = document.createElement('tfoot');
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 65 // to do is put them in a tfoot. So, if there are sortbottom rows,
66 // for backwards compatibility, move them to tfoot (creating it if needed).
74 if (table.tFoot == null) {
75 // table doesn't have a tfoot. Create one.
76 tfo = document.createElement('tfoot');
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 63 // to do is put them in a tfoot. So, if there are sortbottom rows,
64 // for backwards compatibility, move them to tfoot (creating it if needed).
72 if (table.tFoot == null) {
73 // table doesn't have a tfoot. Create one.
74 tfo = document.createElement('tfoot');
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DataGrid.js 455 this._headerTable.insertBefore(this._headerTableBody, this._headerTable.tFoot);
469 this._dataTable.insertBefore(this._dataTableBody, this._dataTable.tFoot);
    [all...]

Completed in 239 milliseconds