Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsIDOMHTMLElement.idl" |
michael@0 | 7 | |
michael@0 | 8 | /** |
michael@0 | 9 | * The nsIDOMHTMLFieldSetElement interface is the interface to a |
michael@0 | 10 | * [X]HTML fieldset element. |
michael@0 | 11 | * |
michael@0 | 12 | * This interface is trying to follow the DOM Level 2 HTML specification: |
michael@0 | 13 | * http://www.w3.org/TR/DOM-Level-2-HTML/ |
michael@0 | 14 | * |
michael@0 | 15 | * with changes from the work-in-progress WHATWG HTML specification: |
michael@0 | 16 | * http://www.whatwg.org/specs/web-apps/current-work/ |
michael@0 | 17 | */ |
michael@0 | 18 | |
michael@0 | 19 | interface nsIDOMValidityState; |
michael@0 | 20 | |
michael@0 | 21 | [scriptable, uuid(e3d91535-9da3-4c4b-a809-f17d85a4fb9f)] |
michael@0 | 22 | interface nsIDOMHTMLFieldSetElement : nsISupports |
michael@0 | 23 | { |
michael@0 | 24 | attribute boolean disabled; |
michael@0 | 25 | readonly attribute nsIDOMHTMLFormElement form; |
michael@0 | 26 | attribute DOMString name; |
michael@0 | 27 | |
michael@0 | 28 | readonly attribute DOMString type; |
michael@0 | 29 | |
michael@0 | 30 | readonly attribute nsIDOMHTMLCollection elements; |
michael@0 | 31 | |
michael@0 | 32 | // The following lines are parte of the constraint validation API, see: |
michael@0 | 33 | // http://www.whatwg.org/specs/web-apps/current-work/#the-constraint-validation-api |
michael@0 | 34 | readonly attribute boolean willValidate; |
michael@0 | 35 | readonly attribute nsIDOMValidityState validity; |
michael@0 | 36 | readonly attribute DOMString validationMessage; |
michael@0 | 37 | boolean checkValidity(); |
michael@0 | 38 | void setCustomValidity(in DOMString error); |
michael@0 | 39 | }; |