| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 raises(DOMException); | 38 raises(DOMException); |
| 39 | 39 |
| 40 [ObjCLegacyUnnamedParameters] void deleteData(in [IsIndex,Optional=Defau
ltIsUndefined] unsigned long offset, | 40 [ObjCLegacyUnnamedParameters] void deleteData(in [IsIndex,Optional=Defau
ltIsUndefined] unsigned long offset, |
| 41 in [IsIndex,Optional=DefaultIsUndefined]
unsigned long length) | 41 in [IsIndex,Optional=DefaultIsUndefined]
unsigned long length) |
| 42 raises(DOMException); | 42 raises(DOMException); |
| 43 | 43 |
| 44 [ObjCLegacyUnnamedParameters] void replaceData(in [IsIndex,Optional=Defa
ultIsUndefined] unsigned long offset, | 44 [ObjCLegacyUnnamedParameters] void replaceData(in [IsIndex,Optional=Defa
ultIsUndefined] unsigned long offset, |
| 45 in [IsIndex,Optional=DefaultIsUndefined]
unsigned long length, | 45 in [IsIndex,Optional=DefaultIsUndefined]
unsigned long length, |
| 46 in [Optional=DefaultIsUndefined] DOMStri
ng data) | 46 in [Optional=DefaultIsUndefined] DOMStri
ng data) |
| 47 raises(DOMException); | 47 raises(DOMException); |
| 48 | 48 |
| 49 // DOM 4 |
| 50 void remove() |
| 51 raises(DOMException); |
| 49 }; | 52 }; |
| 50 | 53 |
| 51 } | 54 } |
| OLD | NEW |