blob: 93eecde62e968b1c2f1a0e1c919d326089051530 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of $LIBRARYNAME;
@DocsEditable()
$(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
@DomName('HTMLTableSectionElement.rows')
List<TableRowElement> get rows =>
new _WrappedList<TableRowElement>($dom_rows);
TableRowElement addRow() {
return insertRow(-1);
}
TableRowElement insertRow(int index) => $dom_insertRow(index);
$!MEMBERS}