mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #5923 - nox:limited-unsigned-long, r=jdm
<!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5923) <!-- Reviewable:end -->
This commit is contained in:
commit
19744984da
15 changed files with 106 additions and 483 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue