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 | 22 |
23 interface HTMLTableRowElement : HTMLElement { | 23 interface HTMLTableRowElement : HTMLElement { |
24 readonly attribute long rowIndex; | 24 readonly attribute long rowIndex; |
25 readonly attribute long sectionRowIndex; | 25 readonly attribute long sectionRowIndex; |
26 readonly attribute HTMLCollection cells; | 26 readonly attribute HTMLCollection cells; |
27 [CEReactions, RaisesException] HTMLElement insertCell(optional long index =
-1); | 27 [CEReactions, RaisesException] HTMLElement insertCell(optional long index =
-1); |
28 [CEReactions, RaisesException] void deleteCell(long index); | 28 [CEReactions, RaisesException] void deleteCell(long index); |
29 | 29 |
30 // obsolete members | 30 // obsolete members |
31 // https://html.spec.whatwg.org/#HTMLTableRowElement-partial | 31 // https://html.spec.whatwg.org/#HTMLTableRowElement-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 |
37 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; | 37 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; |
38 }; | 38 }; |
OLD | NEW |