Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1966)

Unified Diff: core/html/HTMLTableElement.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLTableColElement.idl ('k') | core/html/HTMLTableRowElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
-
« no previous file with comments | « core/html/HTMLTableColElement.idl ('k') | core/html/HTMLTableRowElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698