mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Add CEReactions where needed
This commit is contained in:
parent
438191e0b2
commit
2460997ee1
100 changed files with 1025 additions and 979 deletions
|
@ -5,17 +5,27 @@
|
|||
// https://html.spec.whatwg.org/multipage/#htmlbuttonelement
|
||||
[HTMLConstructor]
|
||||
interface HTMLButtonElement : HTMLElement {
|
||||
// [CEReactions]
|
||||
// attribute boolean autofocus;
|
||||
attribute boolean disabled;
|
||||
[CEReactions]
|
||||
attribute boolean disabled;
|
||||
readonly attribute HTMLFormElement? form;
|
||||
attribute DOMString formAction;
|
||||
attribute DOMString formEnctype;
|
||||
attribute DOMString formMethod;
|
||||
attribute boolean formNoValidate;
|
||||
attribute DOMString formTarget;
|
||||
attribute DOMString name;
|
||||
attribute DOMString type;
|
||||
attribute DOMString value;
|
||||
[CEReactions]
|
||||
attribute DOMString formAction;
|
||||
[CEReactions]
|
||||
attribute DOMString formEnctype;
|
||||
[CEReactions]
|
||||
attribute DOMString formMethod;
|
||||
[CEReactions]
|
||||
attribute boolean formNoValidate;
|
||||
[CEReactions]
|
||||
attribute DOMString formTarget;
|
||||
[CEReactions]
|
||||
attribute DOMString name;
|
||||
[CEReactions]
|
||||
attribute DOMString type;
|
||||
[CEReactions]
|
||||
attribute DOMString value;
|
||||
// attribute HTMLMenuElement? menu;
|
||||
|
||||
//readonly attribute boolean willValidate;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue