Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 readonly attribute Node previousSibling; | 65 readonly attribute Node previousSibling; |
| 66 readonly attribute Node nextSibling; | 66 readonly attribute Node nextSibling; |
| 67 readonly attribute NamedNodeMap attributes; | 67 readonly attribute NamedNodeMap attributes; |
| 68 readonly attribute Document ownerDocument; | 68 readonly attribute Document ownerDocument; |
| 69 | 69 |
| 70 [OldStyleObjC, Custom] Node insertBefore(in [Return] Node newChild, | 70 [OldStyleObjC, Custom] Node insertBefore(in [Return] Node newChild, |
| 71 in Node refChild) | 71 in Node refChild) |
| 72 raises(DOMException); | 72 raises(DOMException); |
| 73 [OldStyleObjC, Custom] Node replaceChild(in Node newChild, | 73 [OldStyleObjC, Custom] Node replaceChild(in Node newChild, |
| 74 in [Return] Node oldChild) | 74 in [Return] Node oldChild) |
| 75 raises(DOMExceptionJSC); | 75 raises(DOMException); |
|
antonm
2012/02/13 19:20:04
is it a revert?
| |
| 76 [Custom] Node removeChild(in [Return] Node oldChild) | 76 [Custom] Node removeChild(in [Return] Node oldChild) |
| 77 raises(DOMException); | 77 raises(DOMException); |
| 78 [Custom] Node appendChild(in [Return] Node newChild) | 78 [Custom] Node appendChild(in [Return] Node newChild) |
| 79 raises(DOMException); | 79 raises(DOMException); |
| 80 | 80 |
| 81 boolean hasChildNodes(); | 81 boolean hasChildNodes(); |
| 82 Node cloneNode(in [Optional=CallWithDefaultValue] boolean deep); | 82 Node cloneNode(in [Optional=CallWithDefaultValue] boolean deep); |
| 83 void normalize(); | 83 void normalize(); |
| 84 | 84 |
| 85 // Introduced in DOM Level 2: | 85 // Introduced in DOM Level 2: |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 158 [Custom] void removeEventListener(in DOMString type, | 158 [Custom] void removeEventListener(in DOMString type, |
| 159 in EventListener listener, | 159 in EventListener listener, |
| 160 in boolean useCapture); | 160 in boolean useCapture); |
| 161 boolean dispatchEvent(in Event event) | 161 boolean dispatchEvent(in Event event) |
| 162 raises(EventException); | 162 raises(EventException); |
| 163 #endif | 163 #endif |
| 164 | 164 |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 } | 167 } |
| OLD | NEW |