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 17 matching lines...) Expand all Loading... |
28 [Reflect] attribute DOMString alt; | 28 [Reflect] attribute DOMString alt; |
29 [Reflect] attribute DOMString autocomplete; | 29 [Reflect] attribute DOMString autocomplete; |
30 [Reflect] attribute boolean autofocus; | 30 [Reflect] attribute boolean autofocus; |
31 [Reflect=checked] attribute boolean defaultChecked; | 31 [Reflect=checked] attribute boolean defaultChecked; |
32 attribute boolean checked; | 32 attribute boolean checked; |
33 [Reflect] attribute DOMString dirName; | 33 [Reflect] attribute DOMString dirName; |
34 [Reflect] attribute boolean disabled; | 34 [Reflect] attribute boolean disabled; |
35 [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form; | 35 [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form; |
36 // The 'files' attribute is intentionally not readonly. | 36 // The 'files' attribute is intentionally not readonly. |
37 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682 | 37 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682 |
38 attribute FileList? files; | 38 [LegacyInterfaceTypeChecking] attribute FileList? files; |
39 attribute DOMString formAction; | 39 attribute DOMString formAction; |
40 [CustomElementCallbacks] attribute DOMString formEnctype; | 40 [CustomElementCallbacks] attribute DOMString formEnctype; |
41 [CustomElementCallbacks] attribute DOMString formMethod; | 41 [CustomElementCallbacks] attribute DOMString formMethod; |
42 [Reflect] attribute boolean formNoValidate; | 42 [Reflect] attribute boolean formNoValidate; |
43 [Reflect] attribute DOMString formTarget; | 43 [Reflect] attribute DOMString formTarget; |
44 [CustomElementCallbacks] attribute unsigned long height; | 44 [CustomElementCallbacks] attribute unsigned long height; |
45 attribute boolean indeterminate; | 45 attribute boolean indeterminate; |
46 [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode; | 46 [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode; |
47 readonly attribute HTMLElement? list; | 47 readonly attribute HTMLElement? list; |
48 [Reflect] attribute DOMString max; | 48 [Reflect] attribute DOMString max; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 [Measure] attribute DOMString autocapitalize; | 105 [Measure] attribute DOMString autocapitalize; |
106 | 106 |
107 // HTML Media Capture | 107 // HTML Media Capture |
108 // http://www.w3.org/TR/html-media-capture/ | 108 // http://www.w3.org/TR/html-media-capture/ |
109 [RuntimeEnabled=MediaCapture, Reflect] attribute boolean capture; | 109 [RuntimeEnabled=MediaCapture, Reflect] attribute boolean capture; |
110 | 110 |
111 // Non-standard APIs | 111 // Non-standard APIs |
112 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire
ctory; | 112 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire
ctory; |
113 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental; | 113 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental; |
114 }; | 114 }; |
OLD | NEW |