2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIDOMHTMLElement.idl"
|
|
|
|
|
2010-08-04 19:40:18 -07:00
|
|
|
interface nsIControllers;
|
2010-08-04 20:12:50 -07:00
|
|
|
interface nsIDOMFileList;
|
2010-08-18 11:28:08 -07:00
|
|
|
interface nsIDOMValidityState;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-04 19:40:18 -07:00
|
|
|
/**
|
|
|
|
* The nsIDOMHTMLInputElement interface is the interface to a [X]HTML
|
|
|
|
* input element.
|
|
|
|
*
|
2010-11-16 15:45:29 -08:00
|
|
|
* This interface is trying to follow the DOM Level 2 HTML specification:
|
2010-08-04 19:40:18 -07:00
|
|
|
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
2010-11-16 15:45:29 -08:00
|
|
|
*
|
|
|
|
* with changes from the work-in-progress WHATWG HTML specification:
|
|
|
|
* http://www.whatwg.org/specs/web-apps/current-work/
|
2010-08-04 19:40:18 -07:00
|
|
|
*/
|
2010-09-09 22:18:10 -07:00
|
|
|
|
2012-07-05 03:13:41 -07:00
|
|
|
[scriptable, uuid(c12471c8-155f-4368-9e8b-13a231e85f3b)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMHTMLInputElement : nsIDOMHTMLElement
|
|
|
|
{
|
|
|
|
attribute DOMString accept;
|
|
|
|
attribute DOMString alt;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2010-09-14 10:58:34 -07:00
|
|
|
attribute DOMString autocomplete;
|
2010-08-04 19:40:18 -07:00
|
|
|
attribute boolean autofocus;
|
|
|
|
attribute boolean defaultChecked;
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute boolean checked;
|
|
|
|
attribute boolean disabled;
|
2010-08-04 19:40:18 -07:00
|
|
|
readonly attribute nsIDOMHTMLFormElement form;
|
2010-08-19 16:23:59 -07:00
|
|
|
attribute DOMString formAction;
|
2010-08-20 10:47:30 -07:00
|
|
|
attribute DOMString formEnctype;
|
|
|
|
attribute DOMString formMethod;
|
2010-09-14 16:38:07 -07:00
|
|
|
attribute boolean formNoValidate;
|
2010-08-19 15:58:10 -07:00
|
|
|
attribute DOMString formTarget;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
|
|
|
readonly attribute nsIDOMFileList files;
|
|
|
|
|
2012-06-26 22:17:31 -07:00
|
|
|
attribute unsigned long height;
|
2010-08-04 19:40:18 -07:00
|
|
|
attribute boolean indeterminate;
|
|
|
|
|
2010-09-09 22:18:10 -07:00
|
|
|
readonly attribute nsIDOMHTMLElement list;
|
2012-07-05 03:11:31 -07:00
|
|
|
attribute DOMString max;
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute long maxLength;
|
2012-07-05 03:11:53 -07:00
|
|
|
attribute DOMString min;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
|
|
|
attribute boolean multiple;
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute DOMString name;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2010-08-18 12:26:22 -07:00
|
|
|
attribute DOMString pattern;
|
2010-08-04 19:40:18 -07:00
|
|
|
attribute DOMString placeholder;
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute boolean readOnly;
|
2010-08-18 11:30:41 -07:00
|
|
|
attribute boolean required;
|
2012-07-05 03:12:14 -07:00
|
|
|
attribute DOMString step;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2010-08-04 20:12:50 -07:00
|
|
|
attribute DOMString align;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute unsigned long size;
|
2012-06-26 22:17:31 -07:00
|
|
|
attribute unsigned long width;
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute DOMString src;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2010-08-04 20:12:50 -07:00
|
|
|
attribute DOMString type;
|
2010-08-04 19:40:18 -07:00
|
|
|
attribute DOMString defaultValue;
|
|
|
|
attribute DOMString value;
|
2012-07-05 03:13:41 -07:00
|
|
|
attribute double valueAsNumber;
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2012-07-05 07:33:47 -07:00
|
|
|
[optional_argc] void stepDown([optional] in long n);
|
|
|
|
[optional_argc] void stepUp([optional] in long n);
|
|
|
|
|
2011-10-29 13:03:55 -07:00
|
|
|
// The following lines are part of the constraint validation API, see:
|
2010-11-16 15:45:29 -08:00
|
|
|
// http://www.whatwg.org/specs/web-apps/current-work/#the-constraint-validation-api
|
2010-08-18 11:28:08 -07:00
|
|
|
readonly attribute boolean willValidate;
|
|
|
|
readonly attribute nsIDOMValidityState validity;
|
|
|
|
readonly attribute DOMString validationMessage;
|
|
|
|
boolean checkValidity();
|
|
|
|
void setCustomValidity(in DOMString error);
|
|
|
|
|
2010-08-04 19:40:18 -07:00
|
|
|
void select();
|
|
|
|
attribute long selectionStart;
|
|
|
|
attribute long selectionEnd;
|
2011-07-28 10:51:22 -07:00
|
|
|
void setSelectionRange(in long selectionStart, in long selectionEnd, [optional] in DOMString direction);
|
|
|
|
attribute DOMString selectionDirection;
|
|
|
|
|
2010-08-04 19:40:18 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute DOMString useMap;
|
2010-08-04 19:40:18 -07:00
|
|
|
readonly attribute nsIControllers controllers;
|
|
|
|
readonly attribute long textLength;
|
|
|
|
|
|
|
|
void mozGetFileNameArray([optional] out unsigned long aLength,
|
|
|
|
[array,size_is(aLength), retval] out wstring aFileNames);
|
|
|
|
void mozSetFileNameArray([array,size_is(aLength)] in wstring aFileNames,
|
|
|
|
in unsigned long aLength);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This non-standard method prevents to check types manually to know if the
|
|
|
|
* element is a text field.
|
|
|
|
*/
|
|
|
|
boolean mozIsTextField(in boolean aExcludePassword);
|
2010-08-18 11:28:08 -07:00
|
|
|
};
|