| 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 interface HTMLTableElement extends HTMLElement { | |
| 8 | |
| 9 String align; | |
| 10 | |
| 11 String bgColor; | |
| 12 | |
| 13 String border; | |
| 14 | |
| 15 HTMLTableCaptionElement caption; | |
| 16 | |
| 17 String cellPadding; | |
| 18 | |
| 19 String cellSpacing; | |
| 20 | |
| 21 String frame; | |
| 22 | |
| 23 final HTMLCollection rows; | |
| 24 | |
| 25 String rules; | |
| 26 | |
| 27 String summary; | |
| 28 | |
| 29 final HTMLCollection tBodies; | |
| 30 | |
| 31 HTMLTableSectionElement tFoot; | |
| 32 | |
| 33 HTMLTableSectionElement tHead; | |
| 34 | |
| 35 String width; | |
| 36 | |
| 37 HTMLElement createCaption(); | |
| 38 | |
| 39 HTMLElement createTFoot(); | |
| 40 | |
| 41 HTMLElement createTHead(); | |
| 42 | |
| 43 void deleteCaption(); | |
| 44 | |
| 45 void deleteRow(int index); | |
| 46 | |
| 47 void deleteTFoot(); | |
| 48 | |
| 49 void deleteTHead(); | |
| 50 | |
| 51 HTMLElement insertRow(int index); | |
| 52 } | |
| OLD | NEW |