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 78 matching lines...) Loading... |
89 // Non-standard attributes | 89 // Non-standard attributes |
90 [Reflect] attribute DOMString align; | 90 [Reflect] attribute DOMString align; |
91 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector
y; | 91 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector
y; |
92 [Reflect] attribute DOMString useMap; | 92 [Reflect] attribute DOMString useMap; |
93 [Reflect] attribute boolean incremental; | 93 [Reflect] attribute boolean incremental; |
94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitSpeech; | 94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitSpeech; |
95 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitGrammar; | 95 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitGrammar; |
96 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp
eechchange; | 96 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp
eechchange; |
97 | 97 |
98 // See http://www.w3.org/TR/html-media-capture/ | 98 // See http://www.w3.org/TR/html-media-capture/ |
99 [Conditional=MEDIA_CAPTURE] attribute DOMString capture; | 99 [Conditional=MEDIA_CAPTURE, Reflect] attribute boolean capture; |
100 }; | 100 }; |
OLD | NEW |