diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLFieldSetElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLFieldSetElement.webidl | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/components/script/dom/webidls/HTMLFieldSetElement.webidl b/components/script/dom/webidls/HTMLFieldSetElement.webidl index d041cdd612f..1257540adb3 100644 --- a/components/script/dom/webidls/HTMLFieldSetElement.webidl +++ b/components/script/dom/webidls/HTMLFieldSetElement.webidl @@ -1,21 +1,26 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmlfieldsetelement +[Exposed=Window] interface HTMLFieldSetElement : HTMLElement { + [HTMLConstructor] constructor(); + + [CEReactions] attribute boolean disabled; readonly attribute HTMLFormElement? form; - // attribute DOMString name; + [CEReactions] + attribute DOMString name; //readonly attribute DOMString type; [SameObject] readonly attribute HTMLCollection elements; - //readonly attribute boolean willValidate; + readonly attribute boolean willValidate; [SameObject] 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); }; |