diff options
Diffstat (limited to 'Source/WebCore/html/HTMLKeygenElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLKeygenElement.idl | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/Source/WebCore/html/HTMLKeygenElement.idl b/Source/WebCore/html/HTMLKeygenElement.idl index fc6f25c81..466d7925f 100644 --- a/Source/WebCore/html/HTMLKeygenElement.idl +++ b/Source/WebCore/html/HTMLKeygenElement.idl @@ -28,25 +28,22 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -module html { +interface HTMLKeygenElement : HTMLElement { + [Reflect] attribute boolean autofocus; + [Reflect] attribute DOMString challenge; + [Reflect] attribute boolean disabled; + readonly attribute HTMLFormElement form; + [Reflect] attribute DOMString keytype; + [Reflect] attribute DOMString name; - interface HTMLKeygenElement : HTMLElement { - attribute [Reflect] boolean autofocus; - attribute [Reflect] DOMString challenge; - attribute [Reflect] boolean disabled; - readonly attribute HTMLFormElement form; - attribute [Reflect] DOMString keytype; - attribute [Reflect] DOMString name; + readonly attribute DOMString type; - readonly attribute DOMString type; + readonly attribute boolean willValidate; + readonly attribute ValidityState validity; + readonly attribute DOMString validationMessage; + boolean checkValidity(); + void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); - readonly attribute boolean willValidate; - readonly attribute ValidityState validity; - readonly attribute DOMString validationMessage; - boolean checkValidity(); - void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); + readonly attribute NodeList labels; +}; - readonly attribute NodeList labels; - }; - -} |