OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 23 matching lines...) Expand all Loading... |
34 readonly attribute HTMLCollection tBodies; | 34 readonly attribute HTMLCollection tBodies; |
35 [CEReactions] HTMLTableSectionElement createTBody(); | 35 [CEReactions] HTMLTableSectionElement createTBody(); |
36 readonly attribute HTMLCollection rows; | 36 readonly attribute HTMLCollection rows; |
37 [CEReactions, RaisesException] HTMLTableRowElement insertRow(optional long i
ndex = -1); | 37 [CEReactions, RaisesException] HTMLTableRowElement insertRow(optional long i
ndex = -1); |
38 [CEReactions, RaisesException] void deleteRow(long index); | 38 [CEReactions, RaisesException] void deleteRow(long index); |
39 // attribute boolean sortable; | 39 // attribute boolean sortable; |
40 // void stopSorting(); | 40 // void stopSorting(); |
41 | 41 |
42 // obsolete members | 42 // obsolete members |
43 // https://html.spec.whatwg.org/#HTMLTableElement-partial | 43 // https://html.spec.whatwg.org/#HTMLTableElement-partial |
44 [CEReactions, Reflect] attribute DOMString align; | 44 [Measure, CEReactions, Reflect] attribute DOMString align; |
45 [CEReactions, Reflect] attribute DOMString border; | 45 [Measure, CEReactions, Reflect] attribute DOMString border; |
46 [CEReactions, Reflect] attribute DOMString frame; | 46 [Measure, CEReactions, Reflect] attribute DOMString frame; |
47 [CEReactions, Reflect] attribute DOMString rules; | 47 [Measure, CEReactions, Reflect] attribute DOMString rules; |
48 [CEReactions, Reflect] attribute DOMString summary; | 48 [Measure, CEReactions, Reflect] attribute DOMString summary; |
49 [CEReactions, Reflect] attribute DOMString width; | 49 [Measure, CEReactions, Reflect] attribute DOMString width; |
50 | 50 |
51 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; | 51 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString b
gColor; |
52 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellPadd
ing; | 52 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString c
ellPadding; |
53 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellSpac
ing; | 53 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString c
ellSpacing; |
54 }; | 54 }; |
OLD | NEW |