| Index: third_party/WebCore/html/HTMLInputElement.idl
|
| diff --git a/third_party/WebCore/html/HTMLInputElement.idl b/third_party/WebCore/html/HTMLInputElement.idl
|
| index 3c11990b29281498bb3b25bf1b5c4d442448acb4..cca40365f6c0d5135479162fff5bf4af29446e10 100644
|
| --- a/third_party/WebCore/html/HTMLInputElement.idl
|
| +++ b/third_party/WebCore/html/HTMLInputElement.idl
|
| @@ -1,6 +1,7 @@
|
| /*
|
| * Copyright (C) 2006, 2010 Apple Inc. All rights reserved.
|
| * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
|
| + * Copyright (C) 2012 Samsung Electronics. All rights reserved.
|
| *
|
| * This library is free software; you can redistribute it and/or
|
| * modify it under the terms of the GNU Library General Public
|
| @@ -36,6 +37,7 @@ module html {
|
| attribute [TreatNullAs=NullString] DOMString formMethod;
|
| attribute [Reflect] boolean formNoValidate;
|
| attribute [Reflect] DOMString formTarget;
|
| + attribute unsigned long height;
|
| attribute boolean indeterminate;
|
| readonly attribute [Conditional=DATALIST] HTMLElement list;
|
| attribute [Reflect] DOMString max;
|
| @@ -65,6 +67,7 @@ module html {
|
| void stepUp(in [Optional] long n) raises(DOMException);
|
| void stepDown(in [Optional] long n) raises(DOMException);
|
|
|
| + attribute unsigned long width;
|
| readonly attribute boolean willValidate;
|
| readonly attribute ValidityState validity;
|
| readonly attribute DOMString validationMessage;
|
| @@ -112,5 +115,7 @@ module html {
|
| readonly attribute URL absoluteImageURL;
|
| #endif
|
|
|
| + // See http://www.w3.org/TR/html-media-capture/
|
| + attribute [Conditional=MEDIA_CAPTURE] DOMString capture;
|
| };
|
| }
|
|
|