| 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) 2011 Motorola Mobility, Inc. All rights reserved. | 4 * Copyright (C) 2011 Motorola Mobility, Inc. 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 // https://html.spec.whatwg.org/#the-textarea-element | 22 // https://html.spec.whatwg.org/#the-textarea-element |
| 23 | 23 |
| 24 interface HTMLTextAreaElement : HTMLElement { | 24 interface HTMLTextAreaElement : HTMLElement { |
| 25 // attribute DOMString autocomplete; | 25 // attribute DOMString autocomplete; |
| 26 [CEReactions, Reflect] attribute boolean autofocus; | 26 [CEReactions, Reflect] attribute boolean autofocus; |
| 27 [CEReactions] attribute unsigned long cols; | 27 [CEReactions] attribute unsigned long cols; |
| 28 [CEReactions, Reflect] attribute DOMString dirName; | 28 [CEReactions, Reflect] attribute DOMString dirName; |
| 29 [CEReactions, Reflect] attribute boolean disabled; | 29 [CEReactions, Reflect] attribute boolean disabled; |
| 30 [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form; | 30 [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form; |
| 31 [CEReactions, RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMStrin
g inputMode; | |
| 32 [CEReactions, RaisesException=Setter] attribute long maxLength; | 31 [CEReactions, RaisesException=Setter] attribute long maxLength; |
| 33 [CEReactions, RaisesException=Setter] attribute long minLength; | 32 [CEReactions, RaisesException=Setter] attribute long minLength; |
| 34 [CEReactions, Reflect] attribute DOMString name; | 33 [CEReactions, Reflect] attribute DOMString name; |
| 35 [CEReactions, Reflect] attribute DOMString placeholder; | 34 [CEReactions, Reflect] attribute DOMString placeholder; |
| 36 [CEReactions, Reflect] attribute boolean readOnly; | 35 [CEReactions, Reflect] attribute boolean readOnly; |
| 37 [CEReactions, Reflect] attribute boolean required; | 36 [CEReactions, Reflect] attribute boolean required; |
| 38 [CEReactions] attribute unsigned long rows; | 37 [CEReactions] attribute unsigned long rows; |
| 39 [CEReactions, Reflect] attribute DOMString wrap; | 38 [CEReactions, Reflect] attribute DOMString wrap; |
| 40 | 39 |
| 41 readonly attribute DOMString type; | 40 readonly attribute DOMString type; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 66 // should not be optional. | 65 // should not be optional. |
| 67 [ImplementedAs=setSelectionRangeForBinding] | 66 [ImplementedAs=setSelectionRangeForBinding] |
| 68 void setSelectionRange([Default=Undefined] optional long start, | 67 void setSelectionRange([Default=Undefined] optional long start, |
| 69 [Default=Undefined] optional long end, | 68 [Default=Undefined] optional long end, |
| 70 optional DOMString direction); | 69 optional DOMString direction); |
| 71 | 70 |
| 72 // HTML autocapitalize proposal | 71 // HTML autocapitalize proposal |
| 73 // https://github.com/mounirlamouri/html-autocapitalize/blob/master/proposal
.md | 72 // https://github.com/mounirlamouri/html-autocapitalize/blob/master/proposal
.md |
| 74 [Measure] attribute DOMString autocapitalize; | 73 [Measure] attribute DOMString autocapitalize; |
| 75 }; | 74 }; |
| OLD | NEW |