OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 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 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString
outerText; | 43 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString
outerText; |
44 | 44 |
45 [RaisesException] Element insertAdjacentElement([Default=Undefined] optional
DOMString where, | 45 [RaisesException] Element insertAdjacentElement([Default=Undefined] optional
DOMString where, |
46 [Default=Undefined] optional Element element); | 46 [Default=Undefined] optional Element element); |
47 [DeliverCustomElementCallbacks, RaisesException] void insertAdjacentHTML([De
fault=Undefined] optional DOMString where, | 47 [DeliverCustomElementCallbacks, RaisesException] void insertAdjacentHTML([De
fault=Undefined] optional DOMString where, |
48 [Default=Undefined] optional DOMString html); | 48 [Default=Undefined] optional DOMString html); |
49 [RaisesException] void insertAdjacentText([Default=Undefined] optional DOMSt
ring where, | 49 [RaisesException] void insertAdjacentText([Default=Undefined] optional DOMSt
ring where, |
50 [Default=Undefined] optional DOMString text); | 50 [Default=Undefined] optional DOMString text); |
51 | 51 |
52 [EnabledAtRuntime=imeAPI] InputMethodContext getInputContext(); | 52 [EnabledAtRuntime=imeAPI] InputMethodContext getInputContext(); |
53 readonly attribute HTMLCollection children; | |
54 | 53 |
55 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString
contentEditable; | 54 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString
contentEditable; |
56 readonly attribute boolean isContentEditable; | 55 readonly attribute boolean isContentEditable; |
57 | 56 |
58 attribute boolean spellcheck; | 57 attribute boolean spellcheck; |
59 | 58 |
60 void click(); | 59 void click(); |
61 }; | 60 }; |
62 | 61 |
OLD | NEW |