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 11 matching lines...) Expand all Loading... |
22 // https://html.spec.whatwg.org/#the-thead-element | 22 // https://html.spec.whatwg.org/#the-thead-element |
23 // https://html.spec.whatwg.org/#the-tfoot-element | 23 // https://html.spec.whatwg.org/#the-tfoot-element |
24 | 24 |
25 interface HTMLTableSectionElement : HTMLElement { | 25 interface HTMLTableSectionElement : HTMLElement { |
26 readonly attribute HTMLCollection rows; | 26 readonly attribute HTMLCollection rows; |
27 [CEReactions, RaisesException] HTMLElement insertRow(optional long index = -
1); | 27 [CEReactions, RaisesException] HTMLElement insertRow(optional long index = -
1); |
28 [CEReactions, RaisesException] void deleteRow(long index); | 28 [CEReactions, RaisesException] void deleteRow(long index); |
29 | 29 |
30 // obsolete members | 30 // obsolete members |
31 // https://html.spec.whatwg.org/#HTMLTableSectionElement-partial | 31 // https://html.spec.whatwg.org/#HTMLTableSectionElement-partial |
32 [CEReactions, Reflect] attribute DOMString align; | 32 [Measure, CEReactions, Reflect] attribute DOMString align; |
33 [CEReactions, Reflect=char] attribute DOMString ch; | 33 [Measure, CEReactions, Reflect=char] attribute DOMString ch; |
34 [CEReactions, Reflect=charoff] attribute DOMString chOff; | 34 [Measure, CEReactions, Reflect=charoff] attribute DOMString chOff; |
35 [CEReactions, Reflect] attribute DOMString vAlign; | 35 [Measure, CEReactions, Reflect] attribute DOMString vAlign; |
36 }; | 36 }; |
OLD | NEW |