diff options
Diffstat (limited to 'Source/WebCore/html/HTMLOutputElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLOutputElement.idl | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/Source/WebCore/html/HTMLOutputElement.idl b/Source/WebCore/html/HTMLOutputElement.idl index 35761c335..ea8312abc 100644 --- a/Source/WebCore/html/HTMLOutputElement.idl +++ b/Source/WebCore/html/HTMLOutputElement.idl @@ -22,22 +22,20 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -module html { - interface HTMLOutputElement : HTMLElement { - attribute [Custom] DOMSettableTokenList htmlFor; - readonly attribute HTMLFormElement form; - attribute [Reflect] DOMString name; +interface HTMLOutputElement : HTMLElement { + [Custom] attribute DOMSettableTokenList htmlFor; + readonly attribute HTMLFormElement form; + [Reflect] attribute DOMString name; - readonly attribute DOMString type; - attribute [TreatNullAs=NullString] DOMString defaultValue; - attribute [TreatNullAs=NullString] DOMString value; + readonly attribute DOMString type; + [TreatNullAs=NullString] attribute DOMString defaultValue; + [TreatNullAs=NullString] attribute DOMString value; - 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; +}; |