| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName HTMLTableSectionElement |
| 8 interface TableSectionElement extends Element { |
| 9 |
| 10 /** @domName HTMLTableSectionElement.align */ |
| 11 String align; |
| 12 |
| 13 /** @domName HTMLTableSectionElement.ch */ |
| 14 String ch; |
| 15 |
| 16 /** @domName HTMLTableSectionElement.chOff */ |
| 17 String chOff; |
| 18 |
| 19 /** @domName HTMLTableSectionElement.rows */ |
| 20 final HTMLCollection rows; |
| 21 |
| 22 /** @domName HTMLTableSectionElement.vAlign */ |
| 23 String vAlign; |
| 24 |
| 25 /** @domName HTMLTableSectionElement.deleteRow */ |
| 26 void deleteRow(int index); |
| 27 |
| 28 /** @domName HTMLTableSectionElement.insertRow */ |
| 29 Element insertRow(int index); |
| 30 } |
| OLD | NEW |