| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 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 11 matching lines...) Expand all Loading... |
| 22 enum SupportedType { | 22 enum SupportedType { |
| 23 "text/html", | 23 "text/html", |
| 24 "text/xml", | 24 "text/xml", |
| 25 "application/xml", | 25 "application/xml", |
| 26 "application/xhtml+xml", | 26 "application/xhtml+xml", |
| 27 "image/svg+xml" | 27 "image/svg+xml" |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 [ | 30 [ |
| 31 WillBeGarbageCollected, | 31 WillBeGarbageCollected, |
| 32 Constructor | 32 Constructor, |
| 33 ConstructorCallWith=Document, |
| 33 ] interface DOMParser { | 34 ] interface DOMParser { |
| 34 Document parseFromString(DOMString str, SupportedType type); | 35 Document parseFromString(DOMString str, SupportedType type); |
| 35 }; | 36 }; |
| OLD | NEW |