Update HTMLFieldSetElement WebIDL to match spec

https://github.com/whatwg/html/pull/413

https://html.spec.whatwg.org/multipage/#htmlfieldsetelement
This commit is contained in:
Corey Farwell 2016-01-08 20:37:30 -05:00
parent 083d3e0201
commit a1795a54d0

View file

@ -11,13 +11,10 @@ interface HTMLFieldSetElement : HTMLElement {
//readonly attribute DOMString type;
//HTMLFormControlsCollection: https://github.com/servo/servo/issues/8566
//readonly attribute HTMLFormControlsCollection elements;
readonly attribute HTMLCollection elements;
[SameObject] readonly attribute HTMLCollection elements;
//readonly attribute boolean willValidate;
readonly attribute ValidityState validity;
[SameObject] readonly attribute ValidityState validity;
//readonly attribute DOMString validationMessage;
//boolean checkValidity();
//boolean reportValidity();