aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLOutputElement.webidl
diff options
context:
space:
mode:
authorConnor Brewster <connor.brewster@eagles.oc.edu>2017-07-10 14:47:03 -0600
committerConnor Brewster <connor.brewster@eagles.oc.edu>2017-07-18 12:22:20 -0600
commit2460997ee18917bda1cdb68e46b7fd5520c3ade7 (patch)
treedb8d87d4a3971e2326b54a0203e838cf94b296e1 /components/script/dom/webidls/HTMLOutputElement.webidl
parent438191e0b207fd6294a465149a37c63f32ce9161 (diff)
downloadservo-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.webidl21
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;
};