mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Auto merge of #10505 - amarant:10491-HTMLInputElement-attr, r=KiChjang
Issue #10491 add HTMLInputElement attributes that reflect content ide… …ntically it uses a new version of string-cache https://github.com/servo/string-cache/pull/148 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10505) <!-- Reviewable:end -->
This commit is contained in:
commit
61865f66b5
24 changed files with 138 additions and 1400 deletions
|
@ -5,13 +5,13 @@
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/#htmlinputelement
|
||||
interface HTMLInputElement : HTMLElement {
|
||||
// attribute DOMString accept;
|
||||
// attribute DOMString alt;
|
||||
attribute DOMString accept;
|
||||
attribute DOMString alt;
|
||||
// attribute DOMString autocomplete;
|
||||
// attribute boolean autofocus;
|
||||
attribute boolean defaultChecked;
|
||||
attribute boolean checked;
|
||||
// attribute DOMString dirName;
|
||||
attribute DOMString dirName;
|
||||
attribute boolean disabled;
|
||||
readonly attribute HTMLFormElement? form;
|
||||
//readonly attribute FileList? files;
|
||||
|
@ -24,21 +24,21 @@ interface HTMLInputElement : HTMLElement {
|
|||
attribute boolean indeterminate;
|
||||
// attribute DOMString inputMode;
|
||||
//readonly attribute HTMLElement? list;
|
||||
// attribute DOMString max;
|
||||
attribute DOMString max;
|
||||
[SetterThrows]
|
||||
attribute long maxLength;
|
||||
// attribute DOMString min;
|
||||
attribute DOMString min;
|
||||
// attribute long minLength;
|
||||
// attribute boolean multiple;
|
||||
attribute boolean multiple;
|
||||
attribute DOMString name;
|
||||
// attribute DOMString pattern;
|
||||
attribute DOMString pattern;
|
||||
attribute DOMString placeholder;
|
||||
attribute boolean readOnly;
|
||||
// attribute boolean required;
|
||||
attribute boolean required;
|
||||
[SetterThrows]
|
||||
attribute unsigned long size;
|
||||
// attribute DOMString src;
|
||||
// attribute DOMString step;
|
||||
attribute DOMString src;
|
||||
attribute DOMString step;
|
||||
attribute DOMString type;
|
||||
attribute DOMString defaultValue;
|
||||
[TreatNullAs=EmptyString, SetterThrows]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue