diff options
Diffstat (limited to 'components/script/dom/webidls')
3 files changed, 6 insertions, 3 deletions
diff --git a/components/script/dom/webidls/HTMLInputElement.webidl b/components/script/dom/webidls/HTMLInputElement.webidl index c62d29ddeeb..81ff5f97426 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.webidl @@ -34,7 +34,8 @@ interface HTMLInputElement : HTMLElement { attribute DOMString placeholder; attribute boolean readOnly; // attribute boolean required; - attribute unsigned long size; + [SetterThrows] + attribute unsigned long size; // attribute DOMString src; // attribute DOMString step; attribute DOMString type; diff --git a/components/script/dom/webidls/HTMLTableCellElement.webidl b/components/script/dom/webidls/HTMLTableCellElement.webidl index 8f9ce054dd1..de1211b6333 100644 --- a/components/script/dom/webidls/HTMLTableCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableCellElement.webidl @@ -5,7 +5,7 @@ // https://www.whatwg.org/html/#htmltablecellelement interface HTMLTableCellElement : HTMLElement { - // attribute unsigned long colSpan; + attribute unsigned long colSpan; // attribute unsigned long rowSpan; //[PutForwards=value] readonly attribute DOMSettableTokenList headers; //readonly attribute long cellIndex; diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index 7feec003ba5..fa70cb4d47a 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -7,7 +7,8 @@ interface HTMLTextAreaElement : HTMLElement { // attribute DOMString autocomplete; // attribute boolean autofocus; - attribute unsigned long cols; + [SetterThrows] + attribute unsigned long cols; // attribute DOMString dirName; attribute boolean disabled; //readonly attribute HTMLFormElement? form; @@ -18,6 +19,7 @@ interface HTMLTextAreaElement : HTMLElement { attribute DOMString placeholder; attribute boolean readOnly; attribute boolean required; + [SetterThrows] attribute unsigned long rows; attribute DOMString wrap; |