| Index: core/html/HTMLTableElement.idl
|
| diff --git a/core/html/HTMLTableElement.idl b/core/html/HTMLTableElement.idl
|
| index cd247d62798a76e9a8fe3aa00ca85b18549b3bbe..4cd6d6f573b94d83bc3caa36fdc5bdea21e30659 100644
|
| --- a/core/html/HTMLTableElement.idl
|
| +++ b/core/html/HTMLTableElement.idl
|
| @@ -19,23 +19,23 @@
|
| */
|
|
|
| interface HTMLTableElement : HTMLElement {
|
| - [SetterRaisesException] attribute HTMLTableCaptionElement caption;
|
| - [SetterRaisesException] attribute HTMLTableSectionElement tHead;
|
| - [SetterRaisesException] attribute HTMLTableSectionElement tFoot;
|
| + [RaisesException=Setter] attribute HTMLTableCaptionElement caption;
|
| + [RaisesException=Setter] attribute HTMLTableSectionElement tHead;
|
| + [RaisesException=Setter] attribute HTMLTableSectionElement tFoot;
|
|
|
| readonly attribute HTMLCollection rows;
|
| readonly attribute HTMLCollection tBodies;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString align;
|
| + [Reflect] attribute DOMString align;
|
| [Reflect, TreatNullAs=NullString] attribute DOMString bgColor;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString border;
|
| + [Reflect] attribute DOMString border;
|
| [Reflect, TreatNullAs=NullString] attribute DOMString cellPadding;
|
| [Reflect, TreatNullAs=NullString] attribute DOMString cellSpacing;
|
|
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString frame;
|
| + [Reflect] attribute DOMString frame;
|
|
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString rules;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString summary;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString width;
|
| + [Reflect] attribute DOMString rules;
|
| + [Reflect] attribute DOMString summary;
|
| + [Reflect] attribute DOMString width;
|
|
|
| HTMLElement createTHead();
|
| void deleteTHead();
|
| @@ -48,4 +48,3 @@ interface HTMLTableElement : HTMLElement {
|
| [RaisesException] HTMLElement insertRow([Default=Undefined] optional long index);
|
| [RaisesException] void deleteRow([Default=Undefined] optional long index);
|
| };
|
| -
|
|
|