| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 attribute [Reflect] boolean disabled; | 32 attribute [Reflect] boolean disabled; |
| 33 readonly attribute HTMLFormElement form; | 33 readonly attribute HTMLFormElement form; |
| 34 attribute FileList files; | 34 attribute FileList files; |
| 35 attribute [Reflect, URL] DOMString formAction; | 35 attribute [Reflect, URL] DOMString formAction; |
| 36 attribute [TreatNullAs=NullString] DOMString formEnctype; | 36 attribute [TreatNullAs=NullString] DOMString formEnctype; |
| 37 attribute [TreatNullAs=NullString] DOMString formMethod; | 37 attribute [TreatNullAs=NullString] DOMString formMethod; |
| 38 attribute [Reflect] boolean formNoValidate; | 38 attribute [Reflect] boolean formNoValidate; |
| 39 attribute [Reflect] DOMString formTarget; | 39 attribute [Reflect] DOMString formTarget; |
| 40 attribute unsigned long height; | 40 attribute unsigned long height; |
| 41 attribute boolean indeterminate; | 41 attribute boolean indeterminate; |
| 42 readonly attribute [Conditional=DATALIST] HTMLElement list; | 42 readonly attribute [Conditional=DATALIST_ELEMENT] HTMLElement list; |
| 43 attribute [Reflect] DOMString max; | 43 attribute [Reflect] DOMString max; |
| 44 attribute long maxLength setter raises(DOMException); | 44 attribute long maxLength setter raises(DOMException); |
| 45 attribute [Reflect] DOMString min; | 45 attribute [Reflect] DOMString min; |
| 46 attribute [Reflect] boolean multiple; | 46 attribute [Reflect] boolean multiple; |
| 47 attribute [Reflect] DOMString name; | 47 attribute [Reflect] DOMString name; |
| 48 attribute [Reflect] DOMString pattern; | 48 attribute [Reflect] DOMString pattern; |
| 49 attribute [Reflect] DOMString placeholder; | 49 attribute [Reflect] DOMString placeholder; |
| 50 attribute [Reflect] boolean readOnly; | 50 attribute [Reflect] boolean readOnly; |
| 51 attribute [Reflect] boolean required; | 51 attribute [Reflect] boolean required; |
| 52 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 52 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 112 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| 113 // Objective-C extension: | 113 // Objective-C extension: |
| 114 readonly attribute DOMString altDisplayString; | 114 readonly attribute DOMString altDisplayString; |
| 115 readonly attribute URL absoluteImageURL; | 115 readonly attribute URL absoluteImageURL; |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 // See http://www.w3.org/TR/html-media-capture/ | 118 // See http://www.w3.org/TR/html-media-capture/ |
| 119 attribute [Conditional=MEDIA_CAPTURE] DOMString capture; | 119 attribute [Conditional=MEDIA_CAPTURE] DOMString capture; |
| 120 }; | 120 }; |
| 121 } | 121 } |
| OLD | NEW |