diff options
author | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-10 14:47:03 -0600 |
---|---|---|
committer | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-18 12:22:20 -0600 |
commit | 2460997ee18917bda1cdb68e46b7fd5520c3ade7 (patch) | |
tree | db8d87d4a3971e2326b54a0203e838cf94b296e1 /components/script/dom/webidls/HTMLOutputElement.webidl | |
parent | 438191e0b207fd6294a465149a37c63f32ce9161 (diff) | |
download | servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.tar.gz servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.zip |
Add CEReactions where needed
Diffstat (limited to 'components/script/dom/webidls/HTMLOutputElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLOutputElement.webidl | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/components/script/dom/webidls/HTMLOutputElement.webidl b/components/script/dom/webidls/HTMLOutputElement.webidl index 6b9439588e6..9f48aeeb49a 100644 --- a/components/script/dom/webidls/HTMLOutputElement.webidl +++ b/components/script/dom/webidls/HTMLOutputElement.webidl @@ -7,18 +7,21 @@ interface HTMLOutputElement : HTMLElement { // [SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor; readonly attribute HTMLFormElement? form; - // attribute DOMString name; + // [CEReactions] + // attribute DOMString name; - //readonly attribute DOMString type; - // attribute DOMString defaultValue; - // attribute DOMString value; + // readonly attribute DOMString type; + // [CEReactions] + // attribute DOMString defaultValue; + // [CEReactions] + // attribute DOMString value; - //readonly attribute boolean willValidate; + // readonly attribute boolean willValidate; readonly attribute ValidityState validity; - //readonly attribute DOMString validationMessage; - //boolean checkValidity(); - //boolean reportValidity(); - //void setCustomValidity(DOMString error); + // readonly attribute DOMString validationMessage; + // boolean checkValidity(); + // boolean reportValidity(); + // void setCustomValidity(DOMString error); readonly attribute NodeList labels; }; |