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 autocomplete; | 28 [Reflect] attribute DOMString autocomplete; |
29 [Reflect] attribute boolean autofocus; | 29 [Reflect] attribute boolean autofocus; |
30 [Reflect=checked] attribute boolean defaultChecked; | 30 [Reflect=checked] attribute boolean defaultChecked; |
31 attribute boolean checked; | 31 attribute boolean checked; |
32 [Reflect] attribute DOMString dirName; | 32 [Reflect] attribute DOMString dirName; |
33 [Reflect] attribute boolean disabled; | 33 [Reflect] attribute boolean disabled; |
34 [ImplementedAs=formOwner] readonly attribute HTMLFormElement form; | 34 [ImplementedAs=formOwner] readonly attribute HTMLFormElement form; |
35 // The 'files' attribute is intentionally not readonly. | 35 // The 'files' attribute is intentionally not readonly. |
36 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682 | 36 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682 |
37 attribute FileList files; | 37 attribute FileList files; |
38 [Reflect, URL, PerWorldBindings, LogActivity=SetterOnly] attribute DOMString
formAction; | 38 [Reflect, URL, LogActivity=SetterOnly] attribute DOMString formAction; |
39 [CustomElementCallbacks] attribute DOMString formEnctype; | 39 [CustomElementCallbacks] attribute DOMString formEnctype; |
40 [CustomElementCallbacks] attribute DOMString formMethod; | 40 [CustomElementCallbacks] attribute DOMString formMethod; |
41 [Reflect] attribute boolean formNoValidate; | 41 [Reflect] attribute boolean formNoValidate; |
42 [Reflect] attribute DOMString formTarget; | 42 [Reflect] attribute DOMString formTarget; |
43 [CustomElementCallbacks] attribute unsigned long height; | 43 [CustomElementCallbacks] attribute unsigned long height; |
44 attribute boolean indeterminate; | 44 attribute boolean indeterminate; |
45 [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode; | 45 [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode; |
46 readonly attribute HTMLElement list; | 46 readonly attribute HTMLElement list; |
47 [Reflect] attribute DOMString max; | 47 [Reflect] attribute DOMString max; |
48 [RaisesException=Setter, CustomElementCallbacks] attribute long maxLength; | 48 [RaisesException=Setter, CustomElementCallbacks] attribute long maxLength; |
49 [Reflect] attribute DOMString min; | 49 [Reflect] attribute DOMString min; |
50 [Reflect] attribute boolean multiple; | 50 [Reflect] attribute boolean multiple; |
51 [Reflect] attribute DOMString name; | 51 [Reflect] attribute DOMString name; |
52 [Reflect] attribute DOMString pattern; | 52 [Reflect] attribute DOMString pattern; |
53 [Reflect] attribute DOMString placeholder; | 53 [Reflect] attribute DOMString placeholder; |
54 [Reflect] attribute boolean readOnly; | 54 [Reflect] attribute boolean readOnly; |
55 [Reflect] attribute boolean required; | 55 [Reflect] attribute boolean required; |
56 [RaisesException=Setter, CustomElementCallbacks] attribute unsigned long siz
e; // Changed string -> long -> unsigned long | 56 [RaisesException=Setter, CustomElementCallbacks] attribute unsigned long siz
e; // Changed string -> long -> unsigned long |
57 [Reflect, URL, PerWorldBindings, LogActivity=SetterOnly] attribute DOMString
src; | 57 [Reflect, URL, LogActivity=SetterOnly] attribute DOMString src; |
58 [Reflect] attribute DOMString step; | 58 [Reflect] attribute DOMString step; |
59 [CustomElementCallbacks] attribute DOMString type; // readonly dropped as pa
rt of DOM level 2 | 59 [CustomElementCallbacks] attribute DOMString type; // readonly dropped as pa
rt of DOM level 2 |
60 [CustomElementCallbacks] attribute DOMString defaultValue; | 60 [CustomElementCallbacks] attribute DOMString defaultValue; |
61 [Reflect] attribute DOMString useMap; | 61 [Reflect] attribute DOMString useMap; |
62 // See the discussion in https://bugs.webkit.org/show_bug.cgi?id=100085 | 62 // See the discussion in https://bugs.webkit.org/show_bug.cgi?id=100085 |
63 [TreatNullAs=NullString, RaisesException=Setter, CustomElementCallbacks] att
ribute DOMString value; | 63 [TreatNullAs=NullString, RaisesException=Setter, CustomElementCallbacks] att
ribute DOMString value; |
64 [RaisesException=Setter, CustomElementCallbacks] attribute Date? valueAsDate
; | 64 [RaisesException=Setter, CustomElementCallbacks] attribute Date? valueAsDate
; |
65 [RaisesException=Setter, CustomElementCallbacks] attribute unrestricted doub
le valueAsNumber; | 65 [RaisesException=Setter, CustomElementCallbacks] attribute unrestricted doub
le valueAsNumber; |
66 | 66 |
67 [RaisesException, CustomElementCallbacks] void stepUp(optional long n); | 67 [RaisesException, CustomElementCallbacks] void stepUp(optional long n); |
(...skipping 24 matching lines...) Expand all Loading... |
92 [Default=Undefined] optional long end, | 92 [Default=Undefined] optional long end, |
93 optional DOMString direction); | 93 optional DOMString direction); |
94 | 94 |
95 // Non-standard attributes | 95 // Non-standard attributes |
96 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire
ctory; | 96 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire
ctory; |
97 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental; | 97 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental; |
98 | 98 |
99 // See http://www.w3.org/TR/html-media-capture/ | 99 // See http://www.w3.org/TR/html-media-capture/ |
100 [Conditional=MEDIA_CAPTURE, Reflect] attribute boolean capture; | 100 [Conditional=MEDIA_CAPTURE, Reflect] attribute boolean capture; |
101 }; | 101 }; |
OLD | NEW |